Tianchi  v0.0.2 build 20130701
C++ library for Qt with VC & mingW
tcformutils.h
1 #ifndef TIANCHI_TCFORMUTILS_H
2 #define TIANCHI_TCFORMUTILS_H
3 
4 #include <tianchi/tcglobal.h>
5 
6 #include <QWidget>
7 
8 class TIANCHI_API TcFormUtils
9 {
10 public:
11  TcFormUtils();
12 
13  inline QWidget* parentForm() const { return m_parentForm; }
14  inline void setParentForm(QWidget* value) { m_parentForm = value; }
15 private:
16  QWidget* m_parentForm;
17 };
18 
19 #endif // TIANCHI_TCFORMUTILS_H