Refactor Project Layout.

This commit is contained in:
stephb9959
2021-10-19 18:59:40 -07:00
parent 89fbf0eca4
commit fdd990cb17
113 changed files with 346 additions and 2179 deletions

View File

@@ -0,0 +1,21 @@
//
// Created by stephane bourque on 2021-10-18.
//
#ifndef OWPROV_RESTAPI_DB_HELPERS_H
#define OWPROV_RESTAPI_DB_HELPERS_H
#include "RESTAPI_ProvObjects.h"
namespace OpenWifi {
bool AddInventoryExtendedInfo(const ProvObjects::InventoryTag &T, Poco::JSON::Object &O);
bool AddLocationExtendedInfo(const ProvObjects::Location & T, Poco::JSON::Object &O);
bool AddContactExtendedInfo(const ProvObjects::Contact &T, Poco::JSON::Object &O);
bool AddEntityExtendedInfo(const ProvObjects::Entity &T, Poco::JSON::Object &O);
bool AddVenueExtendedInfo(const ProvObjects::Venue &T, Poco::JSON::Object &O);
bool AddManagementPolicyExtendedInfo(const ProvObjects::ManagementPolicy &T, Poco::JSON::Object &O);
bool AddManagementRoleExtendedInfo(const ProvObjects::ManagementRole &T, Poco::JSON::Object &O);
}
#endif //OWPROV_RESTAPI_DB_HELPERS_H