XXXX is a ... that allows you to ....
- feature 1
- feature 2
Include the xxxx.hpp
anywhere you want to use it.
And above only one include, define XXXX_IMPLEMENTATION
like this:
#define XXXX_IMPLEMENTATION
#include "xxxx.hpp"
Include the xxxx.hpp
anywhere you want to use it.
Compile with the xxxx.cpp
file or with the built dll available here.
g++ -shared -O3 -fPIC -static -o xxxx.dll xxxx.cpp
Note: the -static
flag is required.
c++11 or later required for compilation.
No external dependencies.
Content of example.cpp:
#include <iostream>
int main() { return 0; }
Output:
...
// XXYY ...
MIT Licence. See LICENSE file. Please refer me with:
Copyright (c) Nicolas VENTER All rights reserved.