Code

r11516@tres: ted | 2006-04-26 21:30:18 -0700
[inkscape.git] / src / dom / domconfig.h
1 #ifndef __DOMCONFIG_H__\r
2 #define __DOMCONFIG_H__\r
3 /**\r
4  * Phoebe DOM Implementation.\r
5  *\r
6  * This is a C++ approximation of the W3C DOM model, which follows\r
7  * fairly closely the specifications in the various .idl files, copies of\r
8  * which are provided for reference.  Most important is this one:\r
9  *\r
10  * http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/idl-definitions.html\r
11  *\r
12  * Authors:\r
13  *   Bob Jamison\r
14  *\r
15  * Copyright (C) 2006 Bob Jamison\r
16  *\r
17  * rwjj@earthlink.net\r
18  *\r
19  *  This library is free software; you can redistribute it and/or\r
20  *  modify it under the terms of the GNU Lesser General Public\r
21  *  License as published by the Free Software Foundation; either\r
22  *  version 2.1 of the License, or (at your option) any later version.\r
23  *\r
24  *  This library is distributed in the hope that it will be useful,\r
25  *  but WITHOUT ANY WARRANTY; without even the implied warranty of\r
26  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\r
27  *  Lesser General Public License for more details.\r
28  *\r
29  *  You should have received a copy of the GNU Lesser General Public\r
30  *  License along with this library; if not, write to the Free Software\r
31  *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA\r
32  */\r
33 \r
34 /**\r
35  * What kind of implementation of DOMString and XMLCh do we want?\r
36  * Define one of the two below for either our own implementation,\r
37  * or GlibMM's Glib::ustring.  If neither one is defined, then DOMString\r
38  * is defined as stdc++'s std::string.\r
39  */\r
40 #define DOM_STRING_GLIBMM\r
41 //#define DOM_STRING_OWN\r
42 \r
43 \r
44 \r
45 \r
46 \r
47 #endif /* __DOMCONFIG_H__ */\r
48 /*#########################################################################\r
49 ## E N D    O F    F I L E\r
50 #########################################################################*/\r
51 \r
52 \r