mirror of
https://gitea.msk.dinamika-avia.ru/Constanta-Design/RRJServer.git
synced 2026-03-28 19:55:48 +03:00
14 lines
212 B
C++
14 lines
212 B
C++
#ifndef CLASSROOM_H
|
|
#define CLASSROOM_H
|
|
|
|
#include "basicentity.h"
|
|
|
|
class DATABASELMS_EXPORT Classroom: public BasicEntity
|
|
{
|
|
public:
|
|
Classroom();
|
|
Classroom(int id, QString name);
|
|
};
|
|
|
|
#endif // CLASSROOM_H
|