#ifndef Uobject_H_ #define Uobject_H_ #include #include #include #include #include #include #include #include #include #include #include "../shared.h" #include "../db/mongo_access.h" namespace uobject { std::string retrieveAll(std::string collection, struct json_object* jsonObjects); std::string add(std::string collection, struct json_object* jsonObjects, const char * body); std::string remove(std::string collection, std::string oid, struct json_object* jsonObjects); } #endif