compile with Exiv2 < 0.18
[kdegraphics.git] / kgamma / kcmkgamma / xf86configpath.h
blob88f7afa4270f502c023150fe2e029f1629e7b7de
1 /***************************************************************************
2 xf86configpath.h - description
3 -------------------
4 begin : Mon Dec 30 2002
5 copyright : (C) 2002 by Michael v.Ostheim
6 email : ostheimm@users.berlios.de
7 ***************************************************************************/
9 /***************************************************************************
10 * *
11 * This program is free software; you can redistribute it and/or modify *
12 * it under the terms of the GNU General Public License as published by *
13 * the Free Software Foundation; either version 2 of the License, or *
14 * (at your option) any later version. *
15 * *
16 ***************************************************************************/
18 #ifndef XF86CONFIGPATH_H
19 #define XF86CONFIGPATH_H
21 #include <string>
23 /**Search for XF86Config or XF86Config-4 which can be located at different
24 places.
25 *@author Michael v.Ostheim
28 class XF86ConfigPath {
30 public:
31 XF86ConfigPath();
32 ~XF86ConfigPath();
34 /** Returns Path variable */
35 const char* get();
37 private: // Private attributes
38 /** Contains the path of XF86Config file */
39 std::string Path;
42 #endif