mirror of
https://gitea.msk.dinamika-avia.ru/Constanta-Design/RRJServer.git
synced 2026-03-28 19:55:48 +03:00
13 lines
150 B
C++
13 lines
150 B
C++
#ifndef TASK_H
|
|
#define TASK_H
|
|
|
|
#include "basicentity.h"
|
|
|
|
class DATABASELMS_EXPORT Task: public BasicEntity
|
|
{
|
|
public:
|
|
Task();
|
|
};
|
|
|
|
#endif // TASK_H
|