b39bd6b6f5
- Simplified app registration with a C++ wrapper for the TactilityC. - Rename the various app classes from `Application` to more specific names like `Calculator` etc.
12 lines
154 B
C++
12 lines
154 B
C++
#include "Calculator.h"
|
|
#include <TactilityCpp/App.h>
|
|
|
|
extern "C" {
|
|
|
|
int main(int argc, char* argv[]) {
|
|
registerApp<Calculator>();
|
|
return 0;
|
|
}
|
|
|
|
}
|