X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=src%2Fjson%2Fjhash.hpp;h=6ba1e502d26685d62c2e2623f7dfd72c5524d251;hb=refs%2Fchanges%2F90%2F4490%2F3;hp=3ff6498132a1e07e20f1d5bdf1c1baa758c35d13;hpb=97204c8a0eb213af5f4c656cd30f1ecf82c8a520;p=ric-plt%2Fxapp-frame-cpp.git diff --git a/src/json/jhash.hpp b/src/json/jhash.hpp index 3ff6498..6ba1e50 100644 --- a/src/json/jhash.hpp +++ b/src/json/jhash.hpp @@ -34,6 +34,8 @@ #include +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