16 lines
235 B
C
16 lines
235 B
C
|
#ifndef TABSEXAMPLES_H
|
||
|
#define TABSEXAMPLES_H
|
||
|
|
||
|
#include "examplelist.h"
|
||
|
|
||
|
class TabsExamples : public ExampleList
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
explicit TabsExamples(QWidget *parent = 0);
|
||
|
~TabsExamples();
|
||
|
};
|
||
|
|
||
|
#endif // TABSEXAMPLES_H
|