00001 00002 // 00003 // Title : AbsPosMC.hpp 00004 // Project : D&D 00005 // Created : Thursday August 1, 1996 00006 // Author : Mitch Pryor & Chetan Kapoor 00007 // Platforms : WIN32 00008 // Copyright : The University of Texas at Austin 00009 // All Rights Reserved. 00010 // Access : Company Confidential 00011 // Purpose : develop a class hierarchy for manual controllers 00012 // 00013 //------------------------------------------------------------------------- 00014 // 00015 // Classes: 00016 // AbsPosMC 00017 // 00018 // Global Functions: 00019 // <none> 00020 // 00021 // Global Variables: 00022 // <none> 00023 // 00024 //------------------------------------------------------------------------- 00025 // 00026 // $Revisions$ 00027 // Modified June 9, 1998 by Chalongrath Pholsiri 00028 // 00029 // $Log: AbsPosMC.h,v $ 00030 // Revision 1.3 2005/03/14 21:54:04 pmarch 00031 // Added to namespace OSCAR and removed "RR" from front of class names. 00032 // 00033 // Revision 1.2 2004/05/27 19:24:07 pmarch 00034 // Added /defgroup and /ingroup tags. 00035 // 00036 // Revision 1.1 2003/08/18 21:23:29 pmarch 00037 // Initial commit of ManualController 00038 // 00039 // 00041 00042 #ifndef AbsPosMC_h 00043 #define AbsPosMC_h 00044 00045 00046 #include "ManualController.h" 00047 00048 00050 namespace OSCAR { 00051 00056 class AbsPosMC : public ManualController 00057 { 00058 public: 00059 //constructor 00060 AbsPosMC(const int numberOfButtons, 00061 const HandPose& startingHand, 00062 const int numberOfDeltas, 00063 const String& name, 00064 MC_TYPE type); 00065 00066 //destuctor 00067 virtual ~AbsPosMC(); 00068 00069 }; 00070 00071 } 00072 #endif //AbsPosMC_h
| RRG Homepage | OSCAR Overview | OSCAR Tutorials | Simulations |