Author: aconway
Date: Tue Apr 15 14:32:35 2008
New Revision: 648418
URL: http://svn.apache.org/viewvc?rev=648418&view=rev
Log:
Fix build error - missing op << for Struct32.
Added:
incubator/qpid/trunk/qpid/cpp/src/qpid/amqp_0_10/Struct32.cpp (with props)
Modified:
incubator/qpid/trunk/qpid/cpp/src/Makefile.am
incubator/qpid/trunk/qpid/cpp/src/qpid/amqp_0_10/Struct32.h
Modified: incubator/qpid/trunk/qpid/cpp/src/Makefile.am
URL:
http://svn.apache.org/viewvc/incubator/qpid/trunk/qpid/cpp/src/Makefile.am?rev=648418&r1=648417&r2=648418&view=diff
==============================================================================
--- incubator/qpid/trunk/qpid/cpp/src/Makefile.am (original)
+++ incubator/qpid/trunk/qpid/cpp/src/Makefile.am Tue Apr 15 14:32:35 2008
@@ -121,6 +121,8 @@
qpid/amqp_0_10/SerializableString.h \
qpid/amqp_0_10/Map.h \
qpid/amqp_0_10/Map.cpp \
+ qpid/amqp_0_10/Struct32.h \
+ qpid/amqp_0_10/Struct32.cpp \
qpid/amqp_0_10/Unit.h \
qpid/amqp_0_10/Unit.cpp \
qpid/amqp_0_10/UnknownType.h \
Added: incubator/qpid/trunk/qpid/cpp/src/qpid/amqp_0_10/Struct32.cpp
URL:
http://svn.apache.org/viewvc/incubator/qpid/trunk/qpid/cpp/src/qpid/amqp_0_10/Struct32.cpp?rev=648418&view=auto
==============================================================================
--- incubator/qpid/trunk/qpid/cpp/src/qpid/amqp_0_10/Struct32.cpp (added)
+++ incubator/qpid/trunk/qpid/cpp/src/qpid/amqp_0_10/Struct32.cpp Tue Apr 15
14:32:35 2008
@@ -0,0 +1,30 @@
+/*
+ * 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.
+ *
+ */
+
+#include "Struct32.h"
+
+namespace qpid {
+namespace amqp_0_10 {
+
+std::ostream& operator<<(std::ostream& o, const Struct32& s) {
+ return o << static_cast<const StructHolder&>(s);
+}
+
+}} // namespace qpid::amqp_0_10
Propchange: incubator/qpid/trunk/qpid/cpp/src/qpid/amqp_0_10/Struct32.cpp
------------------------------------------------------------------------------
svn:eol-style = native
Propchange: incubator/qpid/trunk/qpid/cpp/src/qpid/amqp_0_10/Struct32.cpp
------------------------------------------------------------------------------
svn:keywords = Rev Date
Modified: incubator/qpid/trunk/qpid/cpp/src/qpid/amqp_0_10/Struct32.h
URL:
http://svn.apache.org/viewvc/incubator/qpid/trunk/qpid/cpp/src/qpid/amqp_0_10/Struct32.h?rev=648418&r1=648417&r2=648418&view=diff
==============================================================================
--- incubator/qpid/trunk/qpid/cpp/src/qpid/amqp_0_10/Struct32.h (original)
+++ incubator/qpid/trunk/qpid/cpp/src/qpid/amqp_0_10/Struct32.h Tue Apr 15
14:32:35 2008
@@ -55,6 +55,9 @@
}
};
+
+std::ostream& operator<<(std::ostream&, const Struct32&);
+
}} // namespace qpid::amqp_0_10
#endif /*!QPID_AMQP_0_10_STRUCT32_H*/