mirror of
https://bitbucket.org/theswgsource/src-1.2.git
synced 2026-07-15 00:08:07 -04:00
30 lines
948 B
C++
Executable File
30 lines
948 B
C++
Executable File
// ConsoleCommandParser.h
|
|
// Copyright 2000-02, Sony Online Entertainment Inc., all rights reserved.
|
|
// Author: Justin Randall
|
|
|
|
#ifndef _INCLUDED_ConsoleCommandParser_H
|
|
#define _INCLUDED_ConsoleCommandParser_H
|
|
|
|
//-----------------------------------------------------------------------
|
|
|
|
#include "sharedCommandParser/CommandParser.h"
|
|
|
|
//-----------------------------------------------------------------------
|
|
|
|
class ConsoleCommandParser : public CommandParser
|
|
{
|
|
public:
|
|
ConsoleCommandParser();
|
|
~ConsoleCommandParser();
|
|
virtual bool performParsing(const NetworkId & userId, const StringVector_t & argv,const String_t & originalCommand,String_t & result,const CommandParser * node);
|
|
|
|
private:
|
|
ConsoleCommandParser & operator = (const ConsoleCommandParser & rhs);
|
|
ConsoleCommandParser(const ConsoleCommandParser & source);
|
|
};
|
|
|
|
//-----------------------------------------------------------------------
|
|
|
|
#endif // _INCLUDED_ConsoleCommandParser_H
|
|
|