Add metrics to the framework
[ric-plt/xapp-frame-cpp.git] / src / json / jhash.hpp
index 3ff6498..6ba1e50 100644 (file)
@@ -34,6 +34,8 @@
 
 #include <string>
 
+namespace xapp {
+
 // ------------------------------------------------------------------------
 
 class Jhash {
@@ -47,8 +49,8 @@ class Jhash {
        public:
 
                Jhash( const char* jblob );                                     // builder
-               //Jhash( Message&& soi );                                               // mover
-               //Jhash& operator=( Message&& soi );                    // move operator
+               Jhash( Jhash&& soi );                                           // mover
+               Jhash& operator=( Jhash&& soi );                        // move operator
                ~Jhash();                                                                       // destruction
 
                bool Set_blob( const char* name );                                      // blob/root selection
@@ -83,4 +85,6 @@ class Jhash {
 };
 
 
+
+} // namespace
 #endif