v1.4.4
This commit is contained in:
commit
9c94d113d3
10260 changed files with 1237388 additions and 0 deletions
28
attic/old_source/StarServerShell.hpp
Normal file
28
attic/old_source/StarServerShell.hpp
Normal file
|
@ -0,0 +1,28 @@
|
|||
#ifndef STAR_SERVER_SHELL_HPP
|
||||
#define STAR_SERVER_SHELL_HPP
|
||||
|
||||
#include "StarException.hpp"
|
||||
|
||||
namespace Star {
|
||||
|
||||
STAR_EXCEPTION(ServerShellException, StarException);
|
||||
|
||||
STAR_CLASS(UniverseServer);
|
||||
STAR_CLASS(LuaContext);
|
||||
|
||||
class ServerShell {
|
||||
public:
|
||||
ServerShell(UniverseServerWeakPtr universe);
|
||||
void run();
|
||||
|
||||
private:
|
||||
String help() const;
|
||||
UniverseServerPtr universe() const;
|
||||
|
||||
UniverseServerWeakPtr m_universe;
|
||||
LuaContextPtr m_shellContext;
|
||||
};
|
||||
|
||||
}
|
||||
|
||||
#endif
|
Loading…
Add table
Add a link
Reference in a new issue