Rev 1601 | Rev 1625 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | SVN | RSS feed
| Rev 1601 | Rev 1609 | ||
|---|---|---|---|
| Line 33... | Line 33... | ||
| 33 | class System : public Plugin |
33 | class System : public Plugin |
| 34 | { |
34 | { |
| 35 | public: |
35 | public: |
| 36 | typedef boost::shared_ptr<Plugin> Pointer; |
36 | typedef boost::shared_ptr<Plugin> Pointer; |
| 37 | 37 | ||
| 38 | System(); |
38 | System(bool legacy); |
| 39 | virtual ~System(); |
39 | virtual ~System(); |
| 40 | 40 | ||
| 41 | void InitializeDone(); |
41 | void InitializeDone(); |
| 42 | 42 | ||
| 43 | private: |
43 | private: |
| 44 | static logging::Logger LOG; |
44 | static logging::Logger LOG; |
| - | 45 | bool legacy_; |
|
| 45 | 46 | ||
| 46 | static Value Export_Log(const v8::Arguments& args); |
47 | static Value Export_Log(const v8::Arguments& args); |
| 47 | static Value Export_LoadScript(const v8::Arguments& args); |
48 | static Value Export_LoadScript(const v8::Arguments& args); |
| 48 | static Value Export_Execute(const v8::Arguments& args); |
49 | static Value Export_Execute(const v8::Arguments& args); |
| 49 | 50 | ||