diff options
author | Tobias Markmann <tm@ayena.de> | 2012-10-04 17:00:37 (GMT) |
---|---|---|
committer | Tobias Markmann <tm@ayena.de> | 2012-11-11 16:38:02 (GMT) |
commit | 7a73d0f61859aa1ed1af64ec5d42819ab4264c09 (patch) | |
tree | 91f46c8c9a5fcf99d76581b97efa7b056fe1c502 /Swift/QtUI/QtVCardWidget/QtVCardHomeWork.h | |
parent | f7807574201365276a26528135123545adcaa9bc (diff) | |
download | swift-contrib-tobias/vcard.zip swift-contrib-tobias/vcard.tar.bz2 |
Some refactoring.tobias/vcard
Diffstat (limited to 'Swift/QtUI/QtVCardWidget/QtVCardHomeWork.h')
-rw-r--r-- | Swift/QtUI/QtVCardWidget/QtVCardHomeWork.h | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/Swift/QtUI/QtVCardWidget/QtVCardHomeWork.h b/Swift/QtUI/QtVCardWidget/QtVCardHomeWork.h new file mode 100644 index 0000000..768d984 --- /dev/null +++ b/Swift/QtUI/QtVCardWidget/QtVCardHomeWork.h @@ -0,0 +1,31 @@ +/* + * Copyright (c) 2012 Tobias Markmann + * Licensed under the simplified BSD license. + * See Documentation/Licenses/BSD-simplified.txt for more information. + */ + +#pragma once + +#include <QObject> + +#include "QtTagComboBox.h" + +namespace Swift { + +class QtVCardHomeWork { + public: + QtVCardHomeWork(); + virtual ~QtVCardHomeWork(); + + void setTagComboBox(QtTagComboBox* tagBox); + + void setHome(const bool home); + bool getHome() const; + void setWork(const bool work); + bool getWork() const; + + private: + QtTagComboBox* tagComboBox; +}; + +} |