]> git.tdb.fi Git - libs/core.git/blob - source/core/environ.h
Add move semantics to Variant
[libs/core.git] / source / core / environ.h
1 #ifndef ENVIRON_H_
2 #define ENVIRON_H_
3
4 #include <string>
5 #include "mspcore_api.h"
6
7 namespace Msp {
8
9 MSPCORE_API std::string getenv(const std::string &);
10 MSPCORE_API void setenv(const std::string &, const std::string &);
11 MSPCORE_API void unsetenv(const std::string &);
12
13 } // namespace Msp
14
15 #endif