blob: 8b9c137d99ae3203155be77d6d76fe730991d33c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
|
#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.x, read the file 'COPYING' for more information
*/
#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 :
|