[rhmessaging-commits] rhmessaging commits: r3926 - store/trunk/cpp/lib/gen/qmf/com/redhat/rhm/store.

rhmessaging-commits at lists.jboss.org rhmessaging-commits at lists.jboss.org
Fri Apr 23 15:34:09 EDT 2010


Author: tedross
Date: 2010-04-23 15:34:08 -0400 (Fri, 23 Apr 2010)
New Revision: 3926

Modified:
   store/trunk/cpp/lib/gen/qmf/com/redhat/rhm/store/Journal.cpp
   store/trunk/cpp/lib/gen/qmf/com/redhat/rhm/store/Journal.h
   store/trunk/cpp/lib/gen/qmf/com/redhat/rhm/store/Store.cpp
   store/trunk/cpp/lib/gen/qmf/com/redhat/rhm/store/Store.h
Log:
Updated generated qmf files.


Modified: store/trunk/cpp/lib/gen/qmf/com/redhat/rhm/store/Journal.cpp
===================================================================
--- store/trunk/cpp/lib/gen/qmf/com/redhat/rhm/store/Journal.cpp	2010-04-23 18:36:37 UTC (rev 3925)
+++ store/trunk/cpp/lib/gen/qmf/com/redhat/rhm/store/Journal.cpp	2010-04-23 19:34:08 UTC (rev 3926)
@@ -30,6 +30,7 @@
 #include "ArgsJournalExpand.h"
 
 #include <iostream>
+#include <sstream>
 
 using namespace qmf::com::redhat::rhm::store;
 using           qpid::management::ManagementAgent;

Modified: store/trunk/cpp/lib/gen/qmf/com/redhat/rhm/store/Journal.h
===================================================================
--- store/trunk/cpp/lib/gen/qmf/com/redhat/rhm/store/Journal.h	2010-04-23 18:36:37 UTC (rev 3925)
+++ store/trunk/cpp/lib/gen/qmf/com/redhat/rhm/store/Journal.h	2010-04-23 19:34:08 UTC (rev 3926)
@@ -58,7 +58,7 @@
     uint32_t readPageSize;
     uint32_t readPages;
     uint16_t initialFileCount;
-    uint8_t autoExpand;
+    bool autoExpand;
     uint16_t currentFileCount;
     uint16_t maxFileCount;
     uint32_t dataFileSize;
@@ -246,12 +246,12 @@
         ::qpid::management::Mutex::ScopedLock mutex(accessLock);
         return initialFileCount;
     }
-    inline void set_autoExpand (uint8_t val) {
+    inline void set_autoExpand (bool val) {
         ::qpid::management::Mutex::ScopedLock mutex(accessLock);
         autoExpand = val;
         configChanged = true;
     }
-    inline uint8_t get_autoExpand() {
+    inline bool get_autoExpand() {
         ::qpid::management::Mutex::ScopedLock mutex(accessLock);
         return autoExpand;
     }

Modified: store/trunk/cpp/lib/gen/qmf/com/redhat/rhm/store/Store.cpp
===================================================================
--- store/trunk/cpp/lib/gen/qmf/com/redhat/rhm/store/Store.cpp	2010-04-23 18:36:37 UTC (rev 3925)
+++ store/trunk/cpp/lib/gen/qmf/com/redhat/rhm/store/Store.cpp	2010-04-23 19:34:08 UTC (rev 3926)
@@ -29,6 +29,7 @@
 #include "Store.h"
 
 #include <iostream>
+#include <sstream>
 
 using namespace qmf::com::redhat::rhm::store;
 using           qpid::management::ManagementAgent;

Modified: store/trunk/cpp/lib/gen/qmf/com/redhat/rhm/store/Store.h
===================================================================
--- store/trunk/cpp/lib/gen/qmf/com/redhat/rhm/store/Store.h	2010-04-23 18:36:37 UTC (rev 3925)
+++ store/trunk/cpp/lib/gen/qmf/com/redhat/rhm/store/Store.h	2010-04-23 19:34:08 UTC (rev 3926)
@@ -53,7 +53,7 @@
     std::string location;
     uint16_t defaultInitialFileCount;
     uint32_t defaultDataFileSize;
-    uint8_t tplIsInitialized;
+    bool tplIsInitialized;
     std::string tplDirectory;
     uint32_t tplWritePageSize;
     uint32_t tplWritePages;
@@ -169,12 +169,12 @@
         ::qpid::management::Mutex::ScopedLock mutex(accessLock);
         return defaultDataFileSize;
     }
-    inline void set_tplIsInitialized (uint8_t val) {
+    inline void set_tplIsInitialized (bool val) {
         ::qpid::management::Mutex::ScopedLock mutex(accessLock);
         tplIsInitialized = val;
         configChanged = true;
     }
-    inline uint8_t get_tplIsInitialized() {
+    inline bool get_tplIsInitialized() {
         ::qpid::management::Mutex::ScopedLock mutex(accessLock);
         return tplIsInitialized;
     }



More information about the rhmessaging-commits mailing list