blob: 2fc124d56b4a21aabf157fc0931436ff9c6d6f7a (
plain)
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
|