00001 /************************************************************************************************/ 00002 /*! \file Sensor.h 00003 * \brief The Sensor class provides the interface for h/w sensors. 00004 * \author $Author: cakinli $ 00005 * \version $Revision: 1.2 $ 00006 * \date $Date: 2005/03/16 18:08:18 $ 00007 ************************************************************************************************/ 00008 /*! 00009 * 00010 ************************************************************************************************/ 00011 00012 #ifndef __SSSL_TEMPERATURE_SENSOR_H__ 00013 #define __SSSL_TEMPERATURE_SENSOR_H__ 00014 00015 #include <Base/Sensor.h> 00016 00017 class TemperatureSensor : public Sensor 00018 { 00019 public: 00020 /*! Constructors-Deconstructors */ 00021 TemperatrueSensor(); 00022 virtual ~TemperatrueSensor(); 00023 00024 protected: 00025 00026 }; 00027 00028 #endif 00029 // Do not change the comments below - they will be added automatically by CVS 00030 /***************************************************************************** 00031 * $Log: TemperatureSensor.h,v $ 00032 * Revision 1.2 2005/03/16 18:08:18 cakinli 00033 * *** empty log message *** 00034 * 00035 * Revision 1.1 2003/06/25 21:48:14 mavandyk 00036 * Alter architechture of class structure. 00037 * 00038 * Revision 1.2 2003/06/24 01:02:24 mavandyk 00039 * Added measurment data members and functions. 00040 * 00041 * Revision 1.1.1.1 2003/06/06 18:44:15 simpliciter 00042 * Initial submission. 00043 * 00044 * Revision 1.1.1.1 2003/06/06 14:44:15 simpliciter 00045 * Initial import. 00046 * 00047 * 00048 ******************************************************************************/