PieDock  1.6.3
Environment.h
1 /*
2  * O ,-
3  * ° o . -´ ' ,-
4  * ° .´ ` . ´,´
5  * ( ° )) . (
6  * `-;_ . -´ `.`.
7  * `._' ´
8  *
9  * Copyright (c) 2007-2010 Markus Fisch <mf@markusfisch.de>
10  *
11  * Licensed under the MIT license:
12  * http://www.opensource.org/licenses/mit-license.php
13  */
14 #ifndef _PieDock_Environment_
15 #define _PieDock_Environment_
16 
17 #include <string>
18 
19 namespace PieDock
20 {
27  {
28  public:
29  virtual ~Environment() {}
30  static const std::string getHome();
31 
32  private:
33  Environment() {}
34  };
35 }
36 
37 #endif