aboutsummaryrefslogtreecommitdiffstats
path: root/vespaclient/src/vespa/vespaclient/spoolmaster/application.h
diff options
context:
space:
mode:
Diffstat (limited to 'vespaclient/src/vespa/vespaclient/spoolmaster/application.h')
-rw-r--r--vespaclient/src/vespa/vespaclient/spoolmaster/application.h31
1 files changed, 0 insertions, 31 deletions
diff --git a/vespaclient/src/vespa/vespaclient/spoolmaster/application.h b/vespaclient/src/vespa/vespaclient/spoolmaster/application.h
deleted file mode 100644
index 0cd8e1a917a..00000000000
--- a/vespaclient/src/vespa/vespaclient/spoolmaster/application.h
+++ /dev/null
@@ -1,31 +0,0 @@
-// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
-#pragma once
-
-#include <vespa/fastos/app.h>
-#include <string>
-#include <vector>
-
-namespace spoolmaster {
-/**
- * main spoolmaster application class
- */
-class Application : public FastOS_Application {
-private:
- std::string _masterInbox;
- std::vector<std::string> _inboxFiles;
-
- std::string _outboxParentDir;
- std::vector<std::string> _outboxes;
-
- typedef std::vector<std::string>::iterator sviter_t;
-
- bool scanInbox();
- bool findOutboxes();
- void moveLinks();
-public:
- Application();
- ~Application();
- int Main() override;
-};
-
-}