blob: 667fe910e9aa19a450fd1b60eecd00db92a990a5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
// SPDX-License-Identifier: GPL-2.0-or-later
/** \file
*
* Authors:
* Sushant A A <sushant.co19@gmail.com>
*
* Copyright (C) 2021 Authors
*
* Released under GNU GPL v2+, read the file 'COPYING' for more information.
*/
#ifndef INK_ACTIONS_EFFECT_H
#define INK_ACTIONS_EFFECT_H
class InkscapeApplication;
class SPDocument;
void add_actions_effect(InkscapeApplication* app);
void enable_effect_actions(InkscapeApplication* app, bool enabled);
#endif // INK_ACTIONS_EFFECT_H
|