# fastcdr **Repository Path**: zentel/fastcdr ## Basic Information - **Project Name**: fastcdr - **Description**: fastcdr用来序列化的库 - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2022-11-03 - **Last Updated**: 2022-11-08 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # idl文件编写 类型对应 | IDL类型 | C++类型 | 字节 | | ------------------ | ------------------ | ---------------------- | | char | char | 1 | | wchar | wchar_t | 1, 2 or 4 for GIOP 1.1 | | octet | uint8_t | 1 | | short | int16_t | 2 | | unsigned short | uint16_t | 2 | | long | int32_t | 4 | | unsigned long | uint32_t | 4 | | long long | int64_t | 8 | | unsigned long long | uint64_t | 8 | | float | float | 4 | | double | double | 8 | | long double | long double | 8 | | boolean | bool | 1 | | string | std::string | 0~n | | enum | enum | 4 | | struct | struct | | | union | union | | | char data[5] | std::array | | | sequence | std::vector | | | module | namespace | | | | | |