did a lot of fixed and stuff
This commit is contained in:
@@ -3,21 +3,24 @@
|
||||
#include <QLabel>
|
||||
#include <sstream>
|
||||
#include <fmt/format.h>
|
||||
#include <QVBoxLayout>
|
||||
#include <QPushButton>
|
||||
|
||||
#include "../../Core/config/config.hpp"
|
||||
#include "../../Core/DBHandler/DBPlan/DBPlan.hpp"
|
||||
|
||||
class PlanGridController {
|
||||
class PlanGridController : public QObject {
|
||||
Q_OBJECT
|
||||
private:
|
||||
std::string m_connectionString;
|
||||
|
||||
protected:
|
||||
QString weekdays[5];
|
||||
QString times[5];
|
||||
QMap<QPair<QString, QString>, QLabel*>* planMap;
|
||||
QMap<QPair<QString, QString>, QWidget*>* planMap;
|
||||
|
||||
public:
|
||||
PlanGridController( );
|
||||
|
||||
QMap<QPair<QString, QString>, QLabel*>* getVeranstaltungen( );
|
||||
QMap<QPair<QString, QString>, QWidget*>* getVeranstaltungen( );
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user