Blender  V3.3
FreestyleConfig.h
Go to the documentation of this file.
1 /* SPDX-License-Identifier: GPL-2.0-or-later */
2 
3 #pragma once
4 
10 #include <string>
11 
12 using namespace std;
13 
14 namespace Freestyle {
15 
16 namespace Config {
17 
18 // Directory separators
19 // TODO: Use Blender's stuff for such things!
20 #ifdef WIN32
21 static const string DIR_SEP("\\");
22 static const string PATH_SEP(";");
23 #else
24 static const string DIR_SEP("/");
25 static const string PATH_SEP(":");
26 #endif // WIN32
27 
28 } // end of namespace Config
29 
30 } /* namespace Freestyle */
static const string PATH_SEP(":")
inherits from class Rep
Definition: AppCanvas.cpp:18
#define DIR_SEP
Definition: path.cpp:23