Qt-Gebouw/herkenningsslot.h
2022-04-06 19:17:51 +02:00

26 lines
483 B
C++

#ifndef HERKENNINGSSLOT_H
#define HERKENNINGSSLOT_H
#include "slot.h"
#include <map>
#include "afdrukker.h"
//class Afdrukker;
class HerkenningsSlot : public Slot
{
private:
std::map<string,bool> kaartenbak;
bool vergrendeld;
Afdrukker* afdrukker;
public:
HerkenningsSlot(Afdrukker*);
void vergrendel();
bool isVergrendeld();
void ontgrendel(string);
void toonKaartenBak();
void voegAutorisatieToe(string,bool);
};
#endif // HERKENNINGSSLOT_H