Add PCF(Policy Control Function)

This commit is contained in:
Sukchan Lee 2020-12-11 14:03:20 -05:00
parent fb95725ca4
commit 198abc6e8b
299 changed files with 29050 additions and 1075 deletions

View file

@ -0,0 +1,36 @@
/*
* flow_status.h
*
*
*/
#ifndef _OpenAPI_flow_status_H_
#define _OpenAPI_flow_status_H_
#include <string.h>
#include "../external/cJSON.h"
#include "../include/list.h"
#include "../include/keyValuePair.h"
#include "../include/binary.h"
#ifdef __cplusplus
extern "C" {
#endif
typedef struct OpenAPI_flow_status_s OpenAPI_flow_status_t;
typedef struct OpenAPI_flow_status_s {
} OpenAPI_flow_status_t;
OpenAPI_flow_status_t *OpenAPI_flow_status_create(
);
void OpenAPI_flow_status_free(OpenAPI_flow_status_t *flow_status);
OpenAPI_flow_status_t *OpenAPI_flow_status_parseFromJSON(cJSON *flow_statusJSON);
cJSON *OpenAPI_flow_status_convertToJSON(OpenAPI_flow_status_t *flow_status);
OpenAPI_flow_status_t *OpenAPI_flow_status_copy(OpenAPI_flow_status_t *dst, OpenAPI_flow_status_t *src);
#ifdef __cplusplus
}
#endif
#endif /* _OpenAPI_flow_status_H_ */