diff options
author | Constantin Michael <constantin@codesynthesis.com> | 2011-03-22 10:49:56 +0200 |
---|---|---|
committer | Constantin Michael <constantin@codesynthesis.com> | 2011-04-22 17:54:50 +0200 |
commit | 8e29be9f2229a6c618f95b725502f7082f02d50a (patch) | |
tree | 77eb79933015300a398a10135122534bfa5abaa3 /qt/employee.hxx | |
parent | d206125ed2d85891d946c3c12c9b7eb95d5af41e (diff) |
Add Qt profile example
Diffstat (limited to 'qt/employee.hxx')
-rw-r--r-- | qt/employee.hxx | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/qt/employee.hxx b/qt/employee.hxx new file mode 100644 index 0000000..2fc124d --- /dev/null +++ b/qt/employee.hxx @@ -0,0 +1,15 @@ +// file : qt/employee.hxx +// author : Constantin Michael <constantin@codesynthesis.com> +// copyright : not copyrighted - public domain + +#ifndef EMPLOYEE_HXX +#define EMPLOYEE_HXX + +#include <QString> + +struct employee +{ + QString name; +}; + +#endif // EMPLOYEE_HXX |