// // Copyright (c) ZeroC, Inc. All rights reserved. // #ifndef ICE_RUBY_CONNECTION_H #define ICE_RUBY_CONNECTION_H #include #include namespace IceRuby { void initConnection(VALUE); VALUE createConnection(const Ice::ConnectionPtr&); VALUE createConnectionInfo(const Ice::ConnectionInfoPtr&); Ice::ConnectionPtr getConnection(VALUE); bool checkConnection(VALUE); } #endif