add Toggle examples
This commit is contained in:
parent
902b7d4bd8
commit
6a1049a15b
|
@ -0,0 +1,11 @@
|
||||||
|
#include "toggleexamples.h"
|
||||||
|
|
||||||
|
ToggleExamples::ToggleExamples(QWidget *parent)
|
||||||
|
: ExampleList(parent)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
ToggleExamples::~ToggleExamples()
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
|
@ -0,0 +1,15 @@
|
||||||
|
#ifndef TOGGLEEXAMPLES_H
|
||||||
|
#define TOGGLEEXAMPLES_H
|
||||||
|
|
||||||
|
#include "examplelist.h"
|
||||||
|
|
||||||
|
class ToggleExamples : public ExampleList
|
||||||
|
{
|
||||||
|
Q_OBJECT
|
||||||
|
|
||||||
|
public:
|
||||||
|
explicit ToggleExamples(QWidget *parent = 0);
|
||||||
|
~ToggleExamples();
|
||||||
|
};
|
||||||
|
|
||||||
|
#endif // TOGGLEEXAMPLES_H
|
Loading…
Reference in New Issue