00001 /************************************************************************************************/ 00002 /*! \file Accelerometer.h 00003 * \brief The Accelerometer class provides the interface for high-level software. 00004 * \author $Author: cakinli $ 00005 * \version $Revision: 1.4 $ 00006 * \date $Date: 2005/03/16 18:08:16 $ 00007 ************************************************************************************************/ 00008 /*! 00009 * 00010 ************************************************************************************************/ 00011 00012 #ifndef __SSSL_ACCELEROMETER_H__ 00013 #define __SSSL_ACCELEROMETER_H__ 00014 00015 #include <Sensors/AttitudeSensor.h> 00016 00017 class Accelerometer : public AttitudeSensor 00018 { 00019 public: 00020 // Contructors/Deconstructors 00021 Accelerometer(); 00022 virtual ~Accelerometer(); 00023 00024 protected: 00025 00026 private: 00027 00028 }; 00029 00030 #endif 00031 // Do not change the comments below - they will be added automatically by CVS 00032 /***************************************************************************** 00033 * $Log: Accelerometer.h,v $ 00034 * Revision 1.4 2005/03/16 18:08:16 cakinli 00035 * *** empty log message *** 00036 * 00037 * Revision 1.3 2003/08/18 19:11:44 mavandyk 00038 * Moved funciton bodies to implementation file 00039 * 00040 * Revision 1.2 2003/08/01 11:23:07 mavandyk 00041 * Fixed some bugs. 00042 * 00043 * Revision 1.1 2003/06/25 21:47:37 mavandyk 00044 * Alter architechture of class structure. 00045 * 00046 * Revision 1.1.1.1 2003/06/06 18:44:15 simpliciter 00047 * Initial submission. 00048 * 00049 * 00050 ******************************************************************************/