00001 /* 00002 * Licensed to the Apache Software Foundation (ASF) under one or more 00003 * contributor license agreements. See the NOTICE file distributed with 00004 * this work for additional information regarding copyright ownership. 00005 * The ASF licenses this file to You under the Apache License, Version 2.0 00006 * (the "License"); you may not use this file except in compliance with 00007 * the License. You may obtain a copy of the License at 00008 * 00009 * http://www.apache.org/licenses/LICENSE-2.0 00010 * 00011 * Unless required by applicable law or agreed to in writing, software 00012 * distributed under the License is distributed on an "AS IS" BASIS, 00013 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 00014 * See the License for the specific language governing permissions and 00015 * limitations under the License. 00016 */ 00017 00018 #ifndef _ACTIVEMQ_COMMANDS_JOURNALQUEUEACK_H_ 00019 #define _ACTIVEMQ_COMMANDS_JOURNALQUEUEACK_H_ 00020 00021 // Turn off warning message for ignored exception specification 00022 #ifdef _MSC_VER 00023 #pragma warning( disable : 4290 ) 00024 #endif 00025 00026 #include <activemq/commands/ActiveMQDestination.h> 00027 #include <activemq/commands/BaseDataStructure.h> 00028 #include <activemq/commands/MessageAck.h> 00029 #include <activemq/util/Config.h> 00030 #include <decaf/lang/Pointer.h> 00031 #include <string> 00032 #include <vector> 00033 00034 namespace activemq { 00035 namespace commands { 00036 00037 using decaf::lang::Pointer; 00038 00039 /* 00040 * 00041 * Command code for OpenWire format for JournalQueueAck 00042 * 00043 * NOTE!: This file is auto generated - do not modify! 00044 * if you need to make a change, please see the Java Classes 00045 * in the activemq-cpp-openwire-generator module 00046 * 00047 */ 00048 class AMQCPP_API JournalQueueAck : public BaseDataStructure { 00049 protected: 00050 00051 Pointer<ActiveMQDestination> destination; 00052 Pointer<MessageAck> messageAck; 00053 00054 public: 00055 00056 const static unsigned char ID_JOURNALQUEUEACK = 52; 00057 00058 private: 00059 00060 JournalQueueAck(const JournalQueueAck&); 00061 JournalQueueAck& operator= (const JournalQueueAck&); 00062 00063 public: 00064 00065 JournalQueueAck(); 00066 00067 virtual ~JournalQueueAck(); 00068 00069 virtual unsigned char getDataStructureType() const; 00070 00071 virtual JournalQueueAck* cloneDataStructure() const; 00072 00073 virtual void copyDataStructure(const DataStructure* src); 00074 00075 virtual std::string toString() const; 00076 00077 virtual bool equals(const DataStructure* value) const; 00078 00079 virtual const Pointer<ActiveMQDestination>& getDestination() const; 00080 virtual Pointer<ActiveMQDestination>& getDestination(); 00081 virtual void setDestination( const Pointer<ActiveMQDestination>& destination ); 00082 00083 virtual const Pointer<MessageAck>& getMessageAck() const; 00084 virtual Pointer<MessageAck>& getMessageAck(); 00085 virtual void setMessageAck( const Pointer<MessageAck>& messageAck ); 00086 00087 }; 00088 00089 }} 00090 00091 #endif /*_ACTIVEMQ_COMMANDS_JOURNALQUEUEACK_H_*/
1.6.1