File indexing completed on 2024-04-21 15:08:37

0001 /***************************************************************************
0002                                kmemconfig.h
0003                              -------------------
0004     begin                : Thu Jun 13 2002
0005     copyright            : (C) 2002 by Kmud Developer Team
0006     copyright            : (C) 2008 by Tomas Mecir
0007     email                : kmud-devel@kmud.de
0008  ***************************************************************************/
0009 
0010 /***************************************************************************
0011  *                                                                         *
0012  *   This program is free software; you can redistribute it and/or modify  *
0013  *   it under the terms of the GNU General Public License as published by  *
0014  *   the Free Software Foundation; either version 2 of the License, or     *
0015  *   (at your option) any later version.                                   *
0016  *                                                                         *
0017  ***************************************************************************/
0018 
0019 #ifndef KMEMCONFIG_H
0020 #define KMEMCONFIG_H
0021 
0022 #include <kconfig.h>
0023 
0024 /**
0025   This is a tiny wrapper around KConfig that initialises it with no file name,
0026   so that it operates in memory only. Used to be a full implementation of a
0027   memory-based storage, but this no longer seems necessary.
0028   */
0029 class KMemConfig : public KConfig
0030 {
0031 public: 
0032   KMemConfig();
0033 };
0034 
0035 #endif