Add only one 5GC scenario (call-flow)

This commit is contained in:
Sukchan Lee 2020-06-17 01:22:28 -04:00
parent 20008b6a13
commit dbee687a75
1415 changed files with 86635 additions and 5877 deletions

View file

@ -0,0 +1,40 @@
/*
* mo_exp_data_counter.h
*
*
*/
#ifndef _OpenAPI_mo_exp_data_counter_H_
#define _OpenAPI_mo_exp_data_counter_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_mo_exp_data_counter_s OpenAPI_mo_exp_data_counter_t;
typedef struct OpenAPI_mo_exp_data_counter_s {
int counter;
char *time_stamp;
} OpenAPI_mo_exp_data_counter_t;
OpenAPI_mo_exp_data_counter_t *OpenAPI_mo_exp_data_counter_create(
int counter,
char *time_stamp
);
void OpenAPI_mo_exp_data_counter_free(OpenAPI_mo_exp_data_counter_t *mo_exp_data_counter);
OpenAPI_mo_exp_data_counter_t *OpenAPI_mo_exp_data_counter_parseFromJSON(cJSON *mo_exp_data_counterJSON);
cJSON *OpenAPI_mo_exp_data_counter_convertToJSON(OpenAPI_mo_exp_data_counter_t *mo_exp_data_counter);
OpenAPI_mo_exp_data_counter_t *OpenAPI_mo_exp_data_counter_copy(OpenAPI_mo_exp_data_counter_t *dst, OpenAPI_mo_exp_data_counter_t *src);
#ifdef __cplusplus
}
#endif
#endif /* _OpenAPI_mo_exp_data_counter_H_ */