Files
src/engine/server/application/PlanetServer/src/shared/ConsoleManager.h
T
2014-01-17 06:50:59 -07:00

30 lines
764 B
C++

// ConsoleManager.h
// Copyright 2000-02, Sony Online Entertainment Inc., all rights reserved.
// Author: Justin Randall
#ifndef _INCLUDED_ConsoleManager_H
#define _INCLUDED_ConsoleManager_H
#include "sharedFoundation/NetworkId.h"
#include <string>
//-----------------------------------------------------------------------
class ConsoleManager
{
public:
static void install();
static void remove();
static void processString(const std::string & msg, int track, std::string & result);
private:
ConsoleManager & operator = (const ConsoleManager & rhs);
ConsoleManager(const ConsoleManager & source);
ConsoleManager();
~ConsoleManager();
};
//-----------------------------------------------------------------------
#endif // _INCLUDED_ConsoleManager_H