vrecko
virtual reality framework
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
AP_HeadTracking.h
Go to the documentation of this file.
1 #ifndef AP_HEADTRACKING
2 #define AP_HEADTRACKING
3 
4 #include <vrecko/Ability.h>
5 #include <vreckoAP/Export>
6 //#include <iostream>
7 
8 #pragma warning(disable:4190)
9 // disable warning that tells us that using 'extern "C"' and 'string' at the same time is weird
10 
11 // several functions for maintaining abilities
12 extern "C" AP_EXPORT const char *getPluginDescription(); // returns description of this plugin
13 extern "C" AP_EXPORT const char **getAbilityList(); // returns pointer to the ability name list
14 extern "C" AP_EXPORT const char *getAbilityDescription(const char *strName); // returns description of specified ability
15 extern "C" AP_EXPORT vrecko::Ability *getAbilityInstance(const char* pchName); // returns an instance of the specified ability
16 extern "C" AP_EXPORT void setAbilitiesParameters() {}
17 extern "C" void AP_EXPORT initializeAttributesDescription() {}
18 
19 #endif