indexing description: "Wapper for ActiveMQCPP" date: "$Date$" revision: "$Revision$" class ACTIVEMQCPP feature -- Status Change initialize_library -- Before using anything in ActiveMQCPP, this routine must be called. do cpp_initializeLibrary end shutdown_library -- Must always remember to shut down the Library when done. do cpp_shutdownLibrary end feature {NONE} -- C++ methods cpp_initializeLibrary -- Create new cpp object. external "C++ inline use " alias "[ activemq::library::ActiveMQCPP::initializeLibrary(); ]" end cpp_shutdownLibrary -- Create a connection. external "C++ inline use " alias "[ activemq::library::ActiveMQCPP::shutdownLibrary(); ]" end end