File indexing completed on 2024-05-19 16:31:48

0001 /*
0002  *  SPDX-License-Identifier: GPL-2.0-or-later
0003  *
0004  *  SPDX-FileCopyrightText: 2002 Michael v.Ostheim <ostheimm@users.berlios.de>
0005  */
0006 
0007 #ifndef XF86CONFIGPATH_H
0008 #define XF86CONFIGPATH_H
0009 
0010 #include <string>
0011 
0012 /**Search for XF86Config or XF86Config-4 which can be located at different
0013   places.
0014   *@author Michael v.Ostheim
0015   */
0016 
0017 class XF86ConfigPath
0018 {
0019 public:
0020     XF86ConfigPath();
0021     ~XF86ConfigPath();
0022 
0023     /** Returns Path variable */
0024     const char *get();
0025 
0026 private: // Private attributes
0027     /** Contains the path of XF86Config file */
0028     std::string Path;
0029 };
0030 
0031 #endif