|
PieDock 1.6.0
|
00001 /* 00002 * O ,- 00003 * ° o . -´ ' ,- 00004 * ° .´ ` . ´,´ 00005 * ( ° )) . ( 00006 * `-;_ . -´ `.`. 00007 * `._' ´ 00008 * 00009 * Copyright (c) 2007-2010 Markus Fisch <mf@markusfisch.de> 00010 * 00011 * Licensed under the MIT license: 00012 * http://www.opensource.org/licenses/mit-license.php 00013 */ 00014 #ifndef _PieDock_Environment_ 00015 #define _PieDock_Environment_ 00016 00017 #include <string> 00018 00019 namespace PieDock 00020 { 00026 class Environment 00027 { 00028 public: 00029 virtual ~Environment() {} 00030 static const std::string getHome(); 00031 00032 private: 00033 Environment() {} 00034 }; 00035 } 00036 00037 #endif
1.7.3