14 lines
209 B
C
14 lines
209 B
C
|
#ifndef ATB_PROJECT_H_INCLUDED
|
||
|
#define ATB_PROJECT_H_INCLUDED
|
||
|
|
||
|
#include <QString>
|
||
|
|
||
|
class ATBProject {
|
||
|
public:
|
||
|
QString project;
|
||
|
QString version;
|
||
|
QString info;
|
||
|
};
|
||
|
|
||
|
#endif // ATB_PROJECT_H_INCLUDED
|