1 /* -*- Mode: C++; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
3 * moonlightconfiguration.h:
6 * Moonlight List (moonlight-list@lists.ximian.com)
8 * Copyright 2007 Novell, Inc. (http://www.novell.com)
10 * See the LICENSE file included with the distribution for details.
13 #ifndef __MOON_MOONLIGHT_CONFIGURATION_H__
14 #define __MOON_MOONLIGHT_CONFIGURATION_H__
18 class MoonlightConfiguration
{
24 MoonlightConfiguration ();
25 ~MoonlightConfiguration ();
29 void SetBooleanValue (const char *group
, const char *key
, gboolean value
);
30 void SetStringValue (const char *group
, const char *key
, const char *value
);
31 char *GetStringValue (const char *group
, const char *key
);
32 gboolean
GetBooleanValue (const char *group
, const char *key
);
35 #endif /* __MOON_MOONLIGHT_CONFIGURATION_H__ */