#ifndef MW_SESSION_MANAGER_I_H #define MW_SESSION_MANAGER_I_H #include #include #include class MWSessionManagerI : public Glacier2::SessionManager { public: MWSessionManagerI(const std::shared_ptr&, bool trace, const std::shared_ptr& logger); virtual std::shared_ptr create(std::string, std::shared_ptr, const Ice::Current&) override; private: const std::shared_ptr _MWMap; const bool _trace; const std::shared_ptr _logger; }; #endif