add Toggle examples

This commit is contained in:
laserpants 2016-03-26 09:41:46 +03:00
parent 902b7d4bd8
commit 6a1049a15b
2 changed files with 26 additions and 0 deletions

View File

@ -0,0 +1,11 @@
#include "toggleexamples.h"
ToggleExamples::ToggleExamples(QWidget *parent)
: ExampleList(parent)
{
}
ToggleExamples::~ToggleExamples()
{
}

15
examples/toggleexamples.h Normal file
View File

@ -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