Added CentralServer project

This commit is contained in:
Anonymous
2014-01-17 06:28:18 -07:00
parent 4ba1363775
commit 58b76dd538
156 changed files with 25911 additions and 0 deletions
@@ -0,0 +1,29 @@
// ConsoleCommandParserGame.h
// Copyright 2000-02, Sony Online Entertainment Inc., all rights reserved.
// Author: Justin Randall
#ifndef _INCLUDED_ConsoleCommandParserGame_H
#define _INCLUDED_ConsoleCommandParserGame_H
//-----------------------------------------------------------------------
#include "sharedCommandParser/CommandParser.h"
//-----------------------------------------------------------------------
class ConsoleCommandParserGame : public CommandParser
{
public:
ConsoleCommandParserGame();
~ConsoleCommandParserGame();
virtual bool performParsing(const NetworkId & userId, const StringVector_t & argv,const String_t & originalCommand,String_t & result,const CommandParser * node);
private:
ConsoleCommandParserGame & operator = (const ConsoleCommandParserGame & rhs);
ConsoleCommandParserGame(const ConsoleCommandParserGame & source);
};
//-----------------------------------------------------------------------
#endif // _INCLUDED_ConsoleCommandParserGame_H