Changeset View
Changeset View
Standalone View
Standalone View
source/blender/freestyle/intern/system/StringUtils.h
| Show All 16 Lines | |||||
| #include "BLI_string.h" | #include "BLI_string.h" | ||||
| using namespace std; | using namespace std; | ||||
| namespace Freestyle { | namespace Freestyle { | ||||
| namespace StringUtils { | namespace StringUtils { | ||||
| void getPathName(const string &path, const string &base, vector<string> &pathnames); | |||||
| // STL related | // STL related | ||||
| struct ltstr { | struct ltstr { | ||||
| bool operator()(const char *s1, const char *s2) const | bool operator()(const char *s1, const char *s2) const | ||||
| { | { | ||||
| return strcmp(s1, s2) < 0; | return strcmp(s1, s2) < 0; | ||||
| } | } | ||||
| }; | }; | ||||
| } // end of namespace StringUtils | } // end of namespace StringUtils | ||||
| } /* namespace Freestyle */ | } /* namespace Freestyle */ | ||||