summaryrefslogtreecommitdiffstats
path: root/src/main-cmdlinexact.h
diff options
context:
space:
mode:
authorTavmjong Bah <tavmjong@free.fr>2019-01-16 13:00:43 +0000
committerTavmjong Bah <tavmjong@free.fr>2019-01-16 13:00:43 +0000
commitb3f221f157c70a2f0e10bcb9b1e8e9a7084943f3 (patch)
treee5a1232a7d9909f6892915fa8c2e09b1ebe41dce /src/main-cmdlinexact.h
parentMake InkscapeWindow responsible for adding window to app. (diff)
downloadinkscape-b3f221f157c70a2f0e10bcb9b1e8e9a7084943f3.tar.gz
inkscape-b3f221f157c70a2f0e10bcb9b1e8e9a7084943f3.zip
Remove unused files.
Diffstat (limited to 'src/main-cmdlinexact.h')
-rw-r--r--src/main-cmdlinexact.h60
1 files changed, 0 insertions, 60 deletions
diff --git a/src/main-cmdlinexact.h b/src/main-cmdlinexact.h
deleted file mode 100644
index 13ebcb783..000000000
--- a/src/main-cmdlinexact.h
+++ /dev/null
@@ -1,60 +0,0 @@
-// SPDX-License-Identifier: GPL-2.0-or-later
-#ifndef __INK_MAIN_CMD_LINE_XACTIONS_H__
-#define __INK_MAIN_CMD_LINE_XACTIONS_H__
-
-#ifdef HAVE_CONFIG_H
-# include "config.h" // only include where actually required!
-#endif
-
-#ifdef WITH_YAML
-
-/** \file
- * Extended actions that can be queued at the yaml file
- */
-
-/*
- * Authors:
- * Dmitry Zhulanov <dmitry.zhulanov@gmail.com>
- *
- * Copyright (C) 2016 Authors
- *
- * Released under GNU GPL v2+, read the file 'COPYING' for more information.
- *
- * more details: http://wiki.inkscape.org/wiki/index.php/Using_xverbs
- */
-
-#include "main-cmdlineact.h"
-#include <string>
-
-namespace Inkscape {
-
-typedef std::map<std::string, std::string > xaction_args_values_map_t;
-
-class CmdLineXAction : public CmdLineAction {
- std::string arg;
- xaction_args_values_map_t _values_map;
-public:
- CmdLineXAction (gchar const * arg, xaction_args_values_map_t &values_map);
-
- void doItX (ActionContext const & context) override;
- bool isExtended() override;
-
- static void createActionsFromYAML( gchar const *filename );
-};
-
-} // Inkscape
-
-
-#endif // WITH_YAML
-#endif /* __INK_MAIN_CMD_LINE_XACTIONS_H__ */
-
-/*
- Local Variables:
- mode:c++
- c-file-style:"stroustrup"
- c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
- indent-tabs-mode:nil
- fill-column:99
- End:
-*/
-// vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4 :