Added TaskManager app

This commit is contained in:
Anonymous
2014-01-16 20:06:39 -07:00
parent 39e541c767
commit 2bcd8a262c
46 changed files with 4822 additions and 0 deletions
@@ -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