add boilerplate code for Toggle class
This commit is contained in:
parent
ef57d5b79d
commit
902b7d4bd8
|
@ -0,0 +1 @@
|
||||||
|
#include "toggle.h"
|
|
@ -0,0 +1,4 @@
|
||||||
|
#ifndef TOGGLE_H
|
||||||
|
#define TOGGLE_H
|
||||||
|
|
||||||
|
#endif // TOGGLE_H
|
|
@ -35,7 +35,8 @@ SOURCES += main.cpp\
|
||||||
examples/tableexamples.cpp \
|
examples/tableexamples.cpp \
|
||||||
components/raisedbutton.cpp \
|
components/raisedbutton.cpp \
|
||||||
examples/raisedbuttonexamples.cpp \
|
examples/raisedbuttonexamples.cpp \
|
||||||
examples/sliderexamples.cpp
|
examples/sliderexamples.cpp \
|
||||||
|
components/toggle.cpp
|
||||||
|
|
||||||
HEADERS += mainwindow.h \
|
HEADERS += mainwindow.h \
|
||||||
style.h \
|
style.h \
|
||||||
|
@ -66,4 +67,5 @@ HEADERS += mainwindow.h \
|
||||||
examples/tableexamples.h \
|
examples/tableexamples.h \
|
||||||
components/raisedbutton.h \
|
components/raisedbutton.h \
|
||||||
examples/raisedbuttonexamples.h \
|
examples/raisedbuttonexamples.h \
|
||||||
examples/sliderexamples.h
|
examples/sliderexamples.h \
|
||||||
|
components/toggle.h
|
||||||
|
|
Loading…
Reference in New Issue