S2OPC OPCUA Toolkit
sopc_encodeable.h
Go to the documentation of this file.
1 /*
2  * Licensed to Systerel under one or more contributor license
3  * agreements. See the NOTICE file distributed with this work
4  * for additional information regarding copyright ownership.
5  * Systerel licenses this file to you under the Apache
6  * License, Version 2.0 (the "License"); you may not use this
7  * file except in compliance with the License. You may obtain
8  * a copy of the License at
9  *
10  * http://www.apache.org/licenses/LICENSE-2.0
11  *
12  * Unless required by applicable law or agreed to in writing,
13  * software distributed under the License is distributed on an
14  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15  * KIND, either express or implied. See the License for the
16  * specific language governing permissions and limitations
17  * under the License.
18  */
19 
26 #ifndef SOPC_ENCODEABLE_H_
27 #define SOPC_ENCODEABLE_H_
28 
29 #include <stdint.h>
30 
31 #include "sopc_builtintypes.h"
32 #include "sopc_encodeabletype.h"
33 
42 
51 
62  SOPC_EncodeableType* encTyp,
63  void** encObject);
64 
73 SOPC_ReturnStatus SOPC_Encodeable_Move(void* destObj, void* srcObj);
74 
75 #endif /* SOPC_ENCODEABLE_H_ */
SOPC_ExtensionObject
An ExtensionObject is a container for any Structured DataTypes which cannot be encoded as one of the ...
Definition: sopc_builtintypes.h:260
SOPC_Encodeable_Delete
SOPC_ReturnStatus SOPC_Encodeable_Delete(SOPC_EncodeableType *encTyp, void **encObject)
Clear and deallocate an encodeable object of the given encodeable type.
sopc_encodeabletype.h
EncodeableType and services on encodeable object.
sopc_builtintypes.h
SOPC_Encodeable_Create
SOPC_ReturnStatus SOPC_Encodeable_Create(SOPC_EncodeableType *encTyp, void **encObject)
Instantiate and initialize an encodeable object of the given encodeable type.
SOPC_Encodeable_Move
SOPC_ReturnStatus SOPC_Encodeable_Move(void *destObj, void *srcObj)
Moves content of srcObj to destObj, i.e. copy srcObj structure content to destObj and reset srcObj....
SOPC_EncodeableType_Struct
Encodeable object type structure definition. It provides all the services functions associated with t...
Definition: sopc_encodeabletype.h:161
SOPC_Encodeable_CreateExtension
SOPC_ReturnStatus SOPC_Encodeable_CreateExtension(SOPC_ExtensionObject *extObject, SOPC_EncodeableType *encTyp, void **encObject)
Create an encodeable object of the given encodeable type and set it in the given extension object.
SOPC_ReturnStatus
SOPC_ReturnStatus
Definition: libs2opc_client.h:64