summaryrefslogtreecommitdiffstats
path: root/logd/src/logd/watcher.h
diff options
context:
space:
mode:
Diffstat (limited to 'logd/src/logd/watcher.h')
-rw-r--r--logd/src/logd/watcher.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/logd/src/logd/watcher.h b/logd/src/logd/watcher.h
index 2629da040f7..cd4d9947fd8 100644
--- a/logd/src/logd/watcher.h
+++ b/logd/src/logd/watcher.h
@@ -5,7 +5,7 @@
namespace logdemon {
-class Forwarder;
+class LegacyForwarder;
class ConfigSubscriber;
/**
@@ -16,14 +16,14 @@ class Watcher
private:
std::vector<char> _buffer;
ConfigSubscriber & _confsubscriber;
- Forwarder & _forwarder;
+ LegacyForwarder & _forwarder;
int _wfd;
char * getBuf() { return &_buffer[0]; }
long getBufSize() const { return _buffer.size(); }
public:
Watcher(const Watcher& other) = delete;
Watcher& operator=(const Watcher& other) = delete;
- Watcher(ConfigSubscriber &cfs, Forwarder &fw);
+ Watcher(ConfigSubscriber &cfs, LegacyForwarder &fw);
~Watcher();
void watchfile();