Changeset 3482

Show
Ignore:
Timestamp:
03/08/10 16:42:15 (5 months ago)
Author:
mgray
Message:

Stubbed method I_ApplicationServer::getDefaultSessionService()

Location:
Enterprise/branches/0075_TR_SCRIPTING/AppServer
Files:
3 modified

Legend:

Unmodified
Added
Removed
  • Enterprise/branches/0075_TR_SCRIPTING/AppServer/I_ApplicationServer.hpp

    r3454 r3482  
    3939 
    4040#include <Zen/Enterprise/Networking/I_Endpoint.hpp> 
     41 
     42#include <Zen/Community/SessionCommon/I_SessionService.hpp> 
    4143 
    4244#include <boost/noncopyable.hpp> 
     
    99101    typedef Event::I_EventManager::pEventService_type       pEventService_type; 
    100102    typedef std::map<std::string,std::string>               config_type; 
     103 
     104    typedef Memory::managed_ptr<Community::Common::I_SessionService>    pSessionService_type; 
    101105    /// @} 
    102106 
     
    126130    /// Get the default script engine. 
    127131    virtual pScriptEngine_type getDefaultScriptEngine() = 0; 
     132 
     133    /// Get the default session service. 
     134    virtual pSessionService_type getDefaultSessionService() = 0; 
    128135 
    129136    /// Get the event service that the application server uses for publishing events. 
  • Enterprise/branches/0075_TR_SCRIPTING/AppServer/src/ApplicationServer.cpp

    r3467 r3482  
    293293 
    294294//-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~ 
     295ApplicationServer::pSessionService_type 
     296ApplicationServer::getDefaultSessionService() 
     297{ 
     298    throw Zen::Utility::runtime_exception("ApplicationServer::getDefaultSessionService() : Error, not implemented."); 
     299} 
     300 
     301//-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~ 
    295302ApplicationServer::pEventService_type 
    296303ApplicationServer::getEventService() 
  • Enterprise/branches/0075_TR_SCRIPTING/AppServer/src/ApplicationServer.hpp

    r3454 r3482  
    8080    virtual void registerDefaultScriptEngine(pScriptEngine_type _pEngine); 
    8181    virtual pScriptEngine_type getDefaultScriptEngine(); 
     82    virtual pSessionService_type getDefaultSessionService(); 
    8283    virtual pEventService_type getEventService(); 
    8384    virtual void installProtocols(pConfig_type _pProtocolsConfig);