forked from sony/nmos-cpp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfiguration_resources.h
More file actions
18 lines (12 loc) · 938 Bytes
/
configuration_resources.h
File metadata and controls
18 lines (12 loc) · 938 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#ifndef NMOS_CONFIGURATION_RESOURCES_H
#define NMOS_CONFIGURATION_RESOURCES_H
#include "nmos/control_protocol_typedefs.h"
#include "nmos/resources.h"
namespace nmos
{
web::json::value make_object_properties_set_validation(const web::json::array& role_path, const nmos::nc_restore_validation_status::status status, const web::json::array& notices, const utility::string_t& status_message);
web::json::value make_object_properties_set_validation(const web::json::array& role_path, const nmos::nc_restore_validation_status::status status, const web::json::array& notices);
web::json::value make_object_properties_set_validation(const web::json::array& role_path, const nmos::nc_restore_validation_status::status status);
web::json::value make_object_properties_set_validation(const web::json::array& role_path, const nmos::nc_restore_validation_status::status status, const utility::string_t& status_message);
}
#endif