00001 // 00002 // C++ Interface: meterlist 00003 // 00004 // Description: 00005 // 00006 // 00007 // Author: Bosselut Cyril <bosselut@b1project.com>, (C) 2003 00008 // 00009 // Copyright: See COPYING file that comes with this distribution 00010 // 00011 // 00012 #ifndef METERLIST_H 00013 #define METERLIST_H 00014 00015 #include <qstring.h> 00016 00020 class MeterList{ 00021 public: 00022 MeterList(); 00023 ~MeterList(); 00024 00025 void empty(void); 00026 00027 int line; 00028 QString type; 00029 int width; 00030 int height; 00031 int xPos; 00032 int yPos; 00033 00034 }; 00035 00036 #endif