/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may not use this file except in compliance with * the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #ifndef _ACTIVEMQ_LIBRARY_ACTIVEMQCPP_H_ #define _ACTIVEMQ_LIBRARY_ACTIVEMQCPP_H_ #include namespace activemq { namespace library { class AMQCPP_API ActiveMQCPP { protected: ActiveMQCPP(); ActiveMQCPP(const ActiveMQCPP&); ActiveMQCPP& operator=(const ActiveMQCPP&); public: virtual ~ActiveMQCPP(); /** * Initialize the ActiveMQ-CPP Library constructs, this method will * init all the internal Registry objects and initialize the Decaf * library. * * @throws runtime_error if an error occurs while initializing this library. */ static void initializeLibrary(); /** * Initialize the ActiveMQ-CPP Library constructs, this method will * initialize all the internal Registry objects and initialize the Decaf * library. This method takes the args passed to the main method of * process for use is setting system properties and configuring the * ActiveMQ-CPP Library. * * @param argc - the count of arguments passed to this Process. * @param argv - the array of string arguments passed to this process. * * @throws runtime_error if an error occurs while initializing this library. */ static void initializeLibrary(int argc, char** argv); /** * Shutdown the ActiveMQ-CPP Library, freeing any resources * that could not be freed up to this point. All the user created * ActiveMQ-CPP objects and Decaf Library objects should have been * destroyed by the time this method is called. */ static void shutdownLibrary(); private: static void registerWireFormats(); static void registerTransports(); }; }} #endif /* _ACTIVEMQ_LIBRARY_ACTIVEMQCPP_H_ */