aboutsummaryrefslogtreecommitdiff
path: root/src/nix/legacy.hh
diff options
context:
space:
mode:
Diffstat (limited to 'src/nix/legacy.hh')
-rw-r--r--src/nix/legacy.hh23
1 files changed, 0 insertions, 23 deletions
diff --git a/src/nix/legacy.hh b/src/nix/legacy.hh
deleted file mode 100644
index f503b0da3..000000000
--- a/src/nix/legacy.hh
+++ /dev/null
@@ -1,23 +0,0 @@
-#pragma once
-
-#include <functional>
-#include <map>
-#include <string>
-
-namespace nix {
-
-typedef std::function<void(int, char * *)> MainFunction;
-
-struct RegisterLegacyCommand
-{
- typedef std::map<std::string, MainFunction> Commands;
- static Commands * commands;
-
- RegisterLegacyCommand(const std::string & name, MainFunction fun)
- {
- if (!commands) commands = new Commands;
- (*commands)[name] = fun;
- }
-};
-
-}