summaryrefslogtreecommitdiffstats
path: root/src/main-cmdlineact.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-cmdlineact.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-cmdlineact.h')
-rw-r--r--src/main-cmdlineact.h59
1 files changed, 0 insertions, 59 deletions
diff --git a/src/main-cmdlineact.h b/src/main-cmdlineact.h
deleted file mode 100644
index d880e5220..000000000
--- a/src/main-cmdlineact.h
+++ /dev/null
@@ -1,59 +0,0 @@
-// SPDX-License-Identifier: GPL-2.0-or-later
-
-#ifndef __INK_MAIN_CMD_LINE_ACTIONS_H__
-#define __INK_MAIN_CMD_LINE_ACTIONS_H__
-
-/** \file
- * Small actions that can be queued at the command line
- */
-
-/*
- * Authors:
- * Ted Gould <ted@gould.cx>
- *
- * Copyright (C) 2007 Authors
- *
- * Released under GNU GPL v2+, read the file 'COPYING' for more information.
- */
-
-namespace Inkscape {
-
-class ActionContext;
-
-class CmdLineAction {
- bool _isVerb;
- static std::list <CmdLineAction *> _list;
- static bool _requestQuit;
-
-protected:
- char * _arg;
-
-public:
- CmdLineAction (bool isVerb, char const * arg);
- virtual ~CmdLineAction ();
- virtual bool isExtended();
- virtual void doItX (ActionContext const & context);
-
- void doIt (ActionContext const & context);
-
- /** Return true if any actions were performed */
- static bool doList (ActionContext const & context);
- static bool idle ();
-};
-
-} // Inkscape
-
-
-
-#endif /* __INK_MAIN_CMD_LINE_ACTIONS_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 :