mkRPG
src/editor/GUI/Tabs/tabwidget.h
Go to the documentation of this file.
00001 #ifndef TABWIDGET_H
00002 #define TABWIDGET_H
00003 
00004 #include <QWidget>
00005 
00006 #include <QDebug>
00007 
00022 class TabWidget : public QWidget
00023 {
00024     Q_OBJECT
00025 public:
00026     explicit TabWidget(QWidget *parent = 0);
00027     int index() const;
00028     void setIndex(int i);
00029     virtual void updateGame(){}
00030 
00031 signals:
00032 
00033 public slots:
00034 
00035 private:
00036 
00037     int ind;
00038 
00039 };
00040 
00041 #endif // TABWIDGET_H
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Properties Defines