1 2 3 4 5 6 7 8 9 10 11 12 13 14 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