deserialize.hpp
1 #ifndef NOOS_CLOUD_DESERIALIZE_HPP
2 #define NOOS_CLOUD_DESERIALIZE_HPP
3 /*
4  * LICENSE HERE
5  */
6 #include <noos/objects.hpp>
7 #include <noos/misc/misc.hpp>
8 namespace noos {
9 namespace cloud {
16 template <class service_type,
17  class return_type>
19 {
20  return_type operator()(std::string json);
21 };
22 
23 }
24 }
25 #endif
deserialize a json string to noos::object::* this struct uses template specialisation for each servic...
Definition: deserialize.hpp:18
Definition: asio_handler.hpp:14