summaryrefslogtreecommitdiffstats
path: root/logforwarder/src/apps/vespa-logforwarder-start/child-handler.h
diff options
context:
space:
mode:
Diffstat (limited to 'logforwarder/src/apps/vespa-logforwarder-start/child-handler.h')
-rw-r--r--logforwarder/src/apps/vespa-logforwarder-start/child-handler.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/logforwarder/src/apps/vespa-logforwarder-start/child-handler.h b/logforwarder/src/apps/vespa-logforwarder-start/child-handler.h
new file mode 100644
index 00000000000..619dc1e40aa
--- /dev/null
+++ b/logforwarder/src/apps/vespa-logforwarder-start/child-handler.h
@@ -0,0 +1,12 @@
+// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
+#pragma once
+
+#include <vespa/vespalib/stllike/string.h>
+
+class ChildHandler {
+private:
+ bool _childRunning;
+public:
+ void startChild(const vespalib::string &prefix);
+ ChildHandler();
+};