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