Changeset 3482
- Timestamp:
- 03/08/10 16:42:15 (5 months ago)
- Location:
- Enterprise/branches/0075_TR_SCRIPTING/AppServer
- Files:
-
- 3 modified
-
I_ApplicationServer.hpp (modified) (3 diffs)
-
src/ApplicationServer.cpp (modified) (1 diff)
-
src/ApplicationServer.hpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
Enterprise/branches/0075_TR_SCRIPTING/AppServer/I_ApplicationServer.hpp
r3454 r3482 39 39 40 40 #include <Zen/Enterprise/Networking/I_Endpoint.hpp> 41 42 #include <Zen/Community/SessionCommon/I_SessionService.hpp> 41 43 42 44 #include <boost/noncopyable.hpp> … … 99 101 typedef Event::I_EventManager::pEventService_type pEventService_type; 100 102 typedef std::map<std::string,std::string> config_type; 103 104 typedef Memory::managed_ptr<Community::Common::I_SessionService> pSessionService_type; 101 105 /// @} 102 106 … … 126 130 /// Get the default script engine. 127 131 virtual pScriptEngine_type getDefaultScriptEngine() = 0; 132 133 /// Get the default session service. 134 virtual pSessionService_type getDefaultSessionService() = 0; 128 135 129 136 /// Get the event service that the application server uses for publishing events. -
Enterprise/branches/0075_TR_SCRIPTING/AppServer/src/ApplicationServer.cpp
r3467 r3482 293 293 294 294 //-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~ 295 ApplicationServer::pSessionService_type 296 ApplicationServer::getDefaultSessionService() 297 { 298 throw Zen::Utility::runtime_exception("ApplicationServer::getDefaultSessionService() : Error, not implemented."); 299 } 300 301 //-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~ 295 302 ApplicationServer::pEventService_type 296 303 ApplicationServer::getEventService() -
Enterprise/branches/0075_TR_SCRIPTING/AppServer/src/ApplicationServer.hpp
r3454 r3482 80 80 virtual void registerDefaultScriptEngine(pScriptEngine_type _pEngine); 81 81 virtual pScriptEngine_type getDefaultScriptEngine(); 82 virtual pSessionService_type getDefaultSessionService(); 82 83 virtual pEventService_type getEventService(); 83 84 virtual void installProtocols(pConfig_type _pProtocolsConfig);
