// ********************************************************************** // // Copyright (c) 2003-2017 ZeroC, Inc. All rights reserved. // // This copy of Ice is licensed to you under the terms described in the // ICE_LICENSE file included in this distribution. // // ********************************************************************** #ifndef ICE_BT_INSTANCE_H #define ICE_BT_INSTANCE_H #include #include #include namespace IceBT { class Instance : public IceInternal::ProtocolInstance { public: Instance(const EnginePtr&, Ice::Short, const std::string&); virtual ~Instance(); EnginePtr engine() const { return _engine; } bool initialized() const; private: const EnginePtr _engine; }; } #endif