#include <devicePlugIn.h>
Public Attributes | |
bool (* | openDevice )(void) |
void (* | closeDevice )(void) |
bool (* | update )(void) |
string (* | name )(void) |
int (* | axes )(void) |
int (* | buttons )(void) |
long (* | axis )(int) |
bool (* | buttonPressed )(int) |
Definition at line 12 of file devicePlugIn.h.
00012 { 00013 bool (*openDevice) (void); 00014 void (*closeDevice) (void); 00015 00016 bool (*update) (void); 00017 00018 string (*name) (void); 00019 00020 int (*axes) (void); 00021 int (*buttons) (void); 00022 00023 long (*axis) (int); 00024 bool (*buttonPressed) (int); 00025 }
|
|
|
|
|
|
|
|