Index: ext/libicpf/src/libicpf/config_base.h =================================================================== diff -u -N -rb337c059691a6940b52a86388ff427c734be8eb6 -r86310fdf8a767b700985ebd1b255004d9eb85fb7 --- ext/libicpf/src/libicpf/config_base.h (.../config_base.h) (revision b337c059691a6940b52a86388ff427c734be8eb6) +++ ext/libicpf/src/libicpf/config_base.h (.../config_base.h) (revision 86310fdf8a767b700985ebd1b255004d9eb85fb7) @@ -1,26 +1,26 @@ -#ifndef __CONFIG_BASE_H__ -#define __CONFIG_BASE_H__ - -#include "gen_types.h" -#include "libicpf.h" - -BEGIN_ICPF_NAMESPACE - -/** Base config class. Manages the data that can be directly - * read or written to the storage medium (xml file, ini file, - * registry, ...). - */ -class config_base -{ -public: - /// Actions used when setting value - enum actions - { - action_add, - action_replace - }; - -public: +#ifndef __CONFIG_BASE_H__ +#define __CONFIG_BASE_H__ + +#include "gen_types.h" +#include "libicpf.h" + +BEGIN_ICPF_NAMESPACE + +/** Base config class. Manages the data that can be directly + * read or written to the storage medium (xml file, ini file, + * registry, ...). + */ +class config_base +{ +public: + /// Actions used when setting value + enum actions + { + action_add, + action_replace + }; + +public: /** \name File operations */ /**@{*/ /// Reads the xml document from the specified file @@ -43,8 +43,8 @@ /// Clear values for a given property name virtual void clear(const tchar_t* pszName) = 0; /**@}*/ -}; - -END_ICPF_NAMESPACE - -#endif +}; + +END_ICPF_NAMESPACE + +#endif