ViewVC Help
View File | Revision Log | Show Annotations | Download File | View Changeset | Root Listing
root/repos/FeepingCreaturism/Environment.hpp
Revision: 307
Committed: 2004-12-12T23:07:27-08:00 (20 years, 6 months ago) by douglas
File size: 462 byte(s)
Log Message:
Meep!

File Contents

# Content
1 // Feeping Creaturism
2 //
3 // Douglas Thrift
4 //
5 // $Id$
6
7 #ifndef _Environment_hpp_
8 #define _Environment_hpp_
9
10 #include "FeepingCreaturism.hpp"
11
12 struct Environment
13 {
14 ext::String get(const ext::String& name) const;
15 int set(const ext::String& name, const ext::String& value, bool overwrite = true);
16 int put(const ext::String& env);
17 void unset(const ext::String& name) { ::unsetenv(name.NullTerminate()); }
18 };
19
20 extern Environment env;
21
22 #endif // _Environment_hpp_

Properties

Name Value
svn:eol-style native
svn:keywords Id