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_PRODUCERACK_H_ 00019 #define _ACTIVEMQ_COMMANDS_PRODUCERACK_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/BaseCommand.h> 00027 #include <activemq/commands/ProducerId.h> 00028 #include <activemq/util/Config.h> 00029 #include <decaf/lang/Pointer.h> 00030 #include <string> 00031 #include <vector> 00032 00033 namespace activemq { 00034 namespace commands { 00035 00036 using decaf::lang::Pointer; 00037 00038 /* 00039 * 00040 * Command code for OpenWire format for ProducerAck 00041 * 00042 * NOTE!: This file is auto generated - do not modify! 00043 * if you need to make a change, please see the Java Classes 00044 * in the activemq-cpp-openwire-generator module 00045 * 00046 */ 00047 class AMQCPP_API ProducerAck : public BaseCommand { 00048 protected: 00049 00050 Pointer<ProducerId> producerId; 00051 int size; 00052 00053 public: 00054 00055 const static unsigned char ID_PRODUCERACK = 19; 00056 00057 private: 00058 00059 ProducerAck(const ProducerAck&); 00060 ProducerAck& operator= (const ProducerAck&); 00061 00062 public: 00063 00064 ProducerAck(); 00065 00066 virtual ~ProducerAck(); 00067 00068 virtual unsigned char getDataStructureType() const; 00069 00070 virtual ProducerAck* cloneDataStructure() const; 00071 00072 virtual void copyDataStructure(const DataStructure* src); 00073 00074 virtual std::string toString() const; 00075 00076 virtual bool equals(const DataStructure* value) const; 00077 00078 virtual const Pointer<ProducerId>& getProducerId() const; 00079 virtual Pointer<ProducerId>& getProducerId(); 00080 virtual void setProducerId( const Pointer<ProducerId>& producerId ); 00081 00082 virtual int getSize() const; 00083 virtual void setSize( int size ); 00084 00088 virtual bool isProducerAck() const { 00089 return true; 00090 } 00091 00092 virtual Pointer<Command> visit(activemq::state::CommandVisitor* visitor); 00093 00094 }; 00095 00096 }} 00097 00098 #endif /*_ACTIVEMQ_COMMANDS_PRODUCERACK_H_*/
1.6.1