phuongtran7 / asn1cpp

A memory-safe C++ wrapper on top of asn1c

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

asn1cpp: A memory-safe C++ wrapper on top of asn1c

This project tries to create a memory-safe and easy to use modern C++ wrapper around the code generated by the asn1c project.

The project is completely header-only: just include the headers in your project and you're ready to use it.

Feel free to explore the test folder in order to see examples on how the library is used.

Requirements

This library only requires that you have a C++11 compliant compiler, and nothing else.

Building the tests

The repository includes a series of tests. The tests are not necessary if you just wish to use the library.

If you wish to build and run them, you need first to install the Boost Test library.

Then you can simply follow the following instructions from the repository's root folder:

git submodule init
git submodule update
mkdir build
cd build
cmake ..
make

This will build all the tests. To run the tests, run:

ctest -V

from the build folder you have created.

To run the tests with valgrind, run:

ctest -D ExperimentalMemCheck -V

Documentation

The asn1cpp library is fully documented.

The Doxygen documentation will export only the API of the library, so to avoid providing you with unnecessary text to read. To generate the Doxygen documentation simply run

doxygen

Within the project's folder. It will automatically create an html folder which contains the generated documentation. Detailed informations on the library's usage can be found under the Related Pages section.

In order to have more information about the internals feel free to read the documentation in the code itself. This should be unnecessary in order to simply use the library, and should be needed only if you need to extend some particular functionality.

About

A memory-safe C++ wrapper on top of asn1c

License:GNU Lesser General Public License v3.0


Languages

Language:C++ 78.0%Language:JavaScript 8.2%Language:CSS 4.8%Language:Python 3.6%Language:CMake 2.7%Language:HTML 2.3%Language:C 0.3%