Hubo Library
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Modules Pages
VersionInfo.cpp
Go to the documentation of this file.
1 #include "../hubolib.h"
2 
3 using namespace HuboLib;
4 
5 /*
6 Compile and link:
7  g++ VersionInfo.cpp -L../ -lhubo -lpthread -lrt -o VersionInfo.out
8 Run:
9  sudo ./VersionInfo.out
10 Purpose:
11  VersionInfo() provides some information on the version of the library as well as hardware compatibilities.
12  It does not require further initialization.
13 */
14 
15 int main(void)
16 {
17  VersionInfo();
18 
19  return 0;
20 }
void VersionInfo()
Prints version information and other stuff regarding to the library to the console.
int main(void)
Definition: VersionInfo.cpp:15