mirror of
https://bitbucket.org/theswgsource/src-1.2.git
synced 2026-08-02 03:16:11 -04:00
28 lines
778 B
C++
Executable File
28 lines
778 B
C++
Executable File
// ConsoleManager.h
|
|
// Copyright 2000-02, Sony Online Entertainment Inc., all rights reserved.
|
|
// Author: Justin Randall
|
|
|
|
#ifndef _INCLUDED_ConsoleManager_H
|
|
#define _INCLUDED_ConsoleManager_H
|
|
|
|
#include "sharedCommandParser/CommandParser.h"
|
|
|
|
//-----------------------------------------------------------------------
|
|
|
|
class ConsoleManager
|
|
{
|
|
public:
|
|
static void install();
|
|
static void remove();
|
|
static CommandParser::ErrorType processString(const std::string & msg, const int track, std::string & result);
|
|
private:
|
|
ConsoleManager & operator = (const ConsoleManager & rhs);
|
|
ConsoleManager(const ConsoleManager & source);
|
|
ConsoleManager();
|
|
~ConsoleManager();
|
|
};
|
|
|
|
//-----------------------------------------------------------------------
|
|
|
|
#endif // _INCLUDED_ConsoleManager_H
|