blob: 928c1925fe38c6983ac1f99a07abf58778120cd6 (
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
|
/*
* Copyright 2011,2013 Free Software Foundation, Inc.
*
* This file is part of GNU Radio
*
* SPDX-License-Identifier: GPL-3.0-or-later
*
*/
#ifndef GR_SYS_PATHS_H
#define GR_SYS_PATHS_H
#include <gnuradio/api.h>
namespace gr {
//! directory to create temporary files
GR_RUNTIME_API const char* tmp_path();
//! directory to store application data
GR_RUNTIME_API const char* appdata_path();
//! directory to store user configuration
GR_RUNTIME_API const char* userconf_path();
} /* namespace gr */
#endif /* GR_SYS_PATHS_H */
|