blob: 681537c6192050cd4d356c3da3f5eb34a686e082 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
// SPDX-License-Identifier: GPL-2.0-or-later
/** @file
* TODO: insert short description here
*//*
* Authors: see git history
*
* Copyright (C) 2018 Authors
* Released under GNU GPL v2+, read the file 'COPYING' for more information.
*/
#ifndef SEEN_PATH_PREFIX_H
#define SEEN_PATH_PREFIX_H
#include <string>
char const *get_inkscape_datadir();
char const *get_program_name();
char const *get_program_dir();
#endif /* _PATH_PREFIX_H_ */
|