logiops/src/logid/Receiver.h

17 lines
236 B
C
Raw Normal View History

2020-06-20 01:58:33 +00:00
#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