diff options
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 |