Переделано под один мега-проект LMS с общим CMakeLists.txt

This commit is contained in:
krivoshein
2025-01-15 12:34:56 +03:00
parent 3064818931
commit 1c93b1f94d
219 changed files with 68 additions and 51 deletions

18
DataBaseLMS/instructor.h Normal file
View File

@@ -0,0 +1,18 @@
#ifndef INSTRUCTOR_H
#define INSTRUCTOR_H
#include "user.h"
class DATABASELMS_EXPORT Instructor: public User
{
public:
Instructor();
void setIsAdmin(bool isAdmin){this->isAdmin = isAdmin;}
bool getIsAdmin(){return isAdmin;}
private:
bool isAdmin;
};
#endif // INSTRUCTOR_H