// // Copyright (c) ZeroC, Inc. All rights reserved. // #ifndef ICE_BT_ENGINE_F_H #define ICE_BT_ENGINE_F_H #include #include namespace IceBT { class Engine; IceUtil::Shared* upCast(Engine*); typedef IceInternal::Handle EnginePtr; class BluetoothService; #ifdef ICE_CPP11_MAPPING using BluetoothServicePtr = ::std::shared_ptr; #else IceUtil::Shared* upCast(BluetoothService*); typedef IceInternal::Handle BluetoothServicePtr; #endif } #endif