mirror of
https://github.com/open5gs/open5gs.git
synced 2026-05-05 23:37:22 +00:00
[Release-17] Upgrade SBI to v17.x.0
This commit is contained in:
parent
969c116e77
commit
4d44b1843e
1687 changed files with 121604 additions and 9310 deletions
41
lib/sbi/openapi/model/local_origin.h
Normal file
41
lib/sbi/openapi/model/local_origin.h
Normal file
|
|
@ -0,0 +1,41 @@
|
|||
/*
|
||||
* local_origin.h
|
||||
*
|
||||
* Indicates a Local origin in a reference system
|
||||
*/
|
||||
|
||||
#ifndef _OpenAPI_local_origin_H_
|
||||
#define _OpenAPI_local_origin_H_
|
||||
|
||||
#include <string.h>
|
||||
#include "../external/cJSON.h"
|
||||
#include "../include/list.h"
|
||||
#include "../include/keyValuePair.h"
|
||||
#include "../include/binary.h"
|
||||
#include "geographical_coordinates.h"
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
typedef struct OpenAPI_local_origin_s OpenAPI_local_origin_t;
|
||||
typedef struct OpenAPI_local_origin_s {
|
||||
char *coordinate_id;
|
||||
struct OpenAPI_geographical_coordinates_s *point;
|
||||
} OpenAPI_local_origin_t;
|
||||
|
||||
OpenAPI_local_origin_t *OpenAPI_local_origin_create(
|
||||
char *coordinate_id,
|
||||
OpenAPI_geographical_coordinates_t *point
|
||||
);
|
||||
void OpenAPI_local_origin_free(OpenAPI_local_origin_t *local_origin);
|
||||
OpenAPI_local_origin_t *OpenAPI_local_origin_parseFromJSON(cJSON *local_originJSON);
|
||||
cJSON *OpenAPI_local_origin_convertToJSON(OpenAPI_local_origin_t *local_origin);
|
||||
OpenAPI_local_origin_t *OpenAPI_local_origin_copy(OpenAPI_local_origin_t *dst, OpenAPI_local_origin_t *src);
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* _OpenAPI_local_origin_H_ */
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue