Rewrite logid::DeviceMonitor

This commit is contained in:
pixl
2020-06-19 21:58:33 -04:00
parent b41649b0de
commit 7f1af81910
12 changed files with 129 additions and 867 deletions
+17
View File
@@ -0,0 +1,17 @@
#ifndef LOGID_RECEIVER_H
#define LOGID_RECEIVER_H
#include <string>
namespace logid
{
class Receiver
{
public:
Receiver(std::string path);
private:
std::string _path;
};
}
#endif //LOGID_RECEIVER_H