RDI/tools/RDIdebug.cpp
2022-09-17 12:26:51 +02:00

27 lines
415 B
C++

/**
* @file RDIdebug.cpp
* @date 17/09/2022
* @author JackCarterSmith
* @copyright GPL-v3.0
* @brief Debug app to test functions of RDI library.
*
*/
#include <iostream>
#include <RDI.h>
using namespace std;
using namespace RDI;
int main( int argc, char *argv[] ) {
RDI::RDI *hRDI = nullptr;
hRDI = new RDI::RDI();
printf("Using RDI lib v%s\n", hRDI->getLibVersion().c_str());
delete hRDI;
}