mirror of
https://bitbucket.org/theswgsource/src-1.2.git
synced 2026-07-31 01:15:48 -04:00
Added TaskManager app
This commit is contained in:
@@ -0,0 +1,34 @@
|
||||
// ConsoleImplementation.h
|
||||
// Copyright 2000-02, Sony Online Entertainment Inc., all rights reserved.
|
||||
// Author: Justin Randall
|
||||
|
||||
#ifndef _INCLUDED_ConsoleImplementation_H
|
||||
#define _INCLUDED_ConsoleImplementation_H
|
||||
|
||||
//-----------------------------------------------------------------------
|
||||
|
||||
#include <list>
|
||||
#include <string>
|
||||
|
||||
//-----------------------------------------------------------------------
|
||||
|
||||
class ConsoleImplementation
|
||||
{
|
||||
public:
|
||||
ConsoleImplementation();
|
||||
~ConsoleImplementation();
|
||||
|
||||
const bool hasPendingCommand () const;
|
||||
const std::string popNextCommand ();
|
||||
void pushCommand (const std::string & newCommand);
|
||||
private:
|
||||
ConsoleImplementation & operator = (const ConsoleImplementation & rhs);
|
||||
ConsoleImplementation(const ConsoleImplementation & source);
|
||||
|
||||
private:
|
||||
std::list<std::string> m_pendingCommands;
|
||||
};
|
||||
|
||||
//-----------------------------------------------------------------------
|
||||
|
||||
#endif // _INCLUDED_ConsoleImplementation_H
|
||||
Reference in New Issue
Block a user