// // Copyright (c) ZeroC, Inc. All rights reserved. // #ifndef ICEPY_CONNECTION_H #define ICEPY_CONNECTION_H #include #include #include namespace IcePy { bool initConnection(PyObject*); PyObject* createConnection(const Ice::ConnectionPtr&, const Ice::CommunicatorPtr&); bool checkConnection(PyObject*); bool getConnectionArg(PyObject*, const std::string&, const std::string&, Ice::ConnectionPtr&); } #endif