1
0
mirror of https://github.com/binary-kitchen/doorlockd synced 2024-09-29 09:13:31 +02:00
doorlockd-mirror/door.h

26 lines
225 B
C
Raw Normal View History

2015-05-11 00:18:22 +02:00
#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