PCB Environment
2
Loading...
Searching...
No Matches
pcbenv
cxx
Util
Util.hpp
1
2
#ifndef GYM_PCB_UTIL_UTIL_H
3
#define GYM_PCB_UTIL_UTIL_H
4
5
namespace
util
6
{
7
8
bool
lexiconumeric_compare(
const
std::string&,
const
std::string&);
9
10
std::string loadFile(
const
std::string& filePath);
11
12
inline
std::string loadFile(
const
std::string_view filePath) {
return
loadFile(std::string(filePath)); }
13
14
std::string tolower(
const
std::string&);
15
16
bool
is1TrueYesOrPlus(
const
char
*);
17
18
inline
bool
is1TrueYesOrPlus(
const
std::string &s) {
return
is1TrueYesOrPlus(s.c_str()); }
19
20
}
// namespace util
21
22
#endif
// GYM_PCB_UTIL_UTIL_H
Generated by
1.15.0