Reference Manual

Inti Logo
Main Page | Namespace List | Alphabetical List | Compound List | File List | Namespace Members | Compound Members | File Members

internals.h

00001 /*  Inti-GConf: Integrated Foundation Classes
00002  *  Copyright (C) 2002 The Inti Development Team.
00003  *
00004  *  internals.h - Vector to GSList, private interface.
00005  *
00006  *  This program is free software; you can redistribute it and/or modify
00007  *  it under the terms of the GNU General Public License as published by
00008  *  the Free Software Foundation; either version 2 of the License, or
00009  *  (at your option) any later version.
00010  *
00011  *  This program is distributed in the hope that it will be useful,
00012  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
00013  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
00014  *  GNU Library General Public License for more details.
00015  *
00016  *  You should have received a copy of the GNU Library General Public License
00017  *  along with this program; if not, write to the Free Software
00018  *  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
00019  */
00020 
00021 #ifndef INTI_GCONF_INTERNALS_H
00022 #define INTI_GCONF_INTERNALS_H
00023 
00024 #ifndef __G_SLIST_H__
00025 #include <glib/gslist.h>
00026 #endif
00027 
00028 #ifndef INTI_STRING_H
00029 #include <inti/utf-string.h>
00030 #endif
00031 
00032 #ifndef CPP_VECTOR_H
00033 #include <vector>
00034 #endif
00035 
00036 namespace Inti {
00037 
00038 namespace GConf {
00039 
00040 class Schema;
00041 
00042 GSList* vector_to_gslist(const String& key, const std::vector<int>& list);
00043 
00044 GSList* vector_to_gslist(const String& key, const std::vector<bool>& list);
00045 
00046 GSList* vector_to_gslist(const String& key, const std::vector<double>& list);
00047 
00048 GSList* vector_to_gslist(const String& key, const std::vector<String>& list);
00049 
00050 GSList* vector_to_gslist(const String& key, const std::vector<Schema>& list);
00051 
00052 } // namespace GConf
00053 
00054 } // namespace Inti
00055 
00056 #endif // INTI_GCONF_INTERNALS_H
00057 
Main Page - Footer


Generated on Sun Sep 14 23:52:40 2003 for Inti-GConf by doxygen 1.3.2 written by Dimitri van Heesch, © 1997-2002