00001 00010 #ifndef __ActionTriple_H 00011 #define __ActionTriple_H 00012 00014 00021 class ActionTriple 00022 { 00023 public: 00024 00026 00031 inline ActionTriple(short actionID, short object, short joint) 00032 { 00033 this->actionID = actionID; 00034 this->object = object; 00035 this->joint = joint; 00036 } 00037 00039 virtual ~ActionTriple() {}; 00040 00041 short actionID; 00042 short object; 00043 short joint; 00044 }; 00045 00046 #endif