summaryrefslogtreecommitdiff
path: root/qpid/cpp/src/qmf/Schema.h
diff options
context:
space:
mode:
authorStephen D. Huston <shuston@apache.org>2009-06-22 15:55:38 +0000
committerStephen D. Huston <shuston@apache.org>2009-06-22 15:55:38 +0000
commit4a1121fbfee404c39059185fe35a3b2107391da7 (patch)
tree8f580da7536d54689d19ac1faf0b8ec7fd62f7d8 /qpid/cpp/src/qmf/Schema.h
parenta2675b4c60e953fd1d39aa731f9d35a5924f0a7a (diff)
downloadqpid-python-4a1121fbfee404c39059185fe35a3b2107391da7.tar.gz
Resolve Windows build errors/warnings
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@787286 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/cpp/src/qmf/Schema.h')
-rw-r--r--qpid/cpp/src/qmf/Schema.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/qpid/cpp/src/qmf/Schema.h b/qpid/cpp/src/qmf/Schema.h
index c4106393ff..e3ab90e3e3 100644
--- a/qpid/cpp/src/qmf/Schema.h
+++ b/qpid/cpp/src/qmf/Schema.h
@@ -21,7 +21,7 @@
*/
#include <qmf/Typecode.h>
-#include <stdint.h>
+#include <qpid/sys/IntegerTypes.h>
namespace qmf {
@@ -29,12 +29,12 @@ namespace qmf {
enum Direction { DIR_IN = 1, DIR_OUT = 2, DIR_IN_OUT = 3 };
enum ClassKind { CLASS_OBJECT = 1, CLASS_EVENT = 2 };
- class SchemaArgumentImpl;
- class SchemaMethodImpl;
- class SchemaPropertyImpl;
- class SchemaStatisticImpl;
- class SchemaObjectClassImpl;
- class SchemaEventClassImpl;
+ struct SchemaArgumentImpl;
+ struct SchemaMethodImpl;
+ struct SchemaPropertyImpl;
+ struct SchemaStatisticImpl;
+ struct SchemaObjectClassImpl;
+ struct SchemaEventClassImpl;
/**
*/