1
0
mirror of https://github.com/binary-kitchen/doorlockd synced 2024-12-22 10:24:26 +01:00
doorlockd-mirror/door.h
2015-05-10 22:18:22 +00:00

26 lines
225 B
C++

#ifndef DOOR_H
#define DOOR_H
#include <string>
#include "logger.h"
class Door {
public:
static Door &get();
~Door();
void lock();
void unlock();
private:
Door();
const Logger &_l;
};
#endif