1/*----------------------------------------------------------------------------
2|   Copyright (C) 1999  Jochen C. Loewer (loewerj@hotmail.com)
3+-----------------------------------------------------------------------------
4|
5|   $Id: nodecmd.h,v 1.6 2005/01/07 15:09:40 rolf Exp $
6
7|   The contents of this file are subject to the Mozilla Public License
8|   Version 1.1 (the "License"); you may not use this file except in
9|   compliance with the License. You may obtain a copy of the License at
10|   http://www.mozilla.org/MPL/
11|
12|   Software distributed under the License is distributed on an "AS IS"
13|   basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the
14|   License for the specific language governing rights and limitations
15|   under the License.
16|
17|   The Original Code is tDOM.
18|
19|   The Initial Developer of the Original Code is Jochen Loewer
20|
21|   Portions created by Jochen Loewer are Copyright (C) 1998, 1999
22|   Jochen Loewer. All Rights Reserved.
23|
24|   Portions created by Zoran Vasiljevic are Copyright (C) 2000-2002
25|   Zoran Vasiljevic. All Rights Reserved.
26|
27|   Portions created by Rolf Ade are Copyright (C) 1999-2002
28|   Rolf Ade. All Rights Reserved.
29|
30|   Written by Zoran Vasiljevic
31|   July 12, 2000
32|
33\---------------------------------------------------------------------------*/
34
35int nodecmd_createNodeCmd (Tcl_Interp    * interp,
36                           int             objc,
37                           Tcl_Obj *CONST  objv[],
38                           int             checkName,
39                           int             checkCharData);
40
41int nodecmd_appendFromScript (Tcl_Interp *interp,
42                              domNode    *node,
43                              Tcl_Obj    *cmdObj);
44
45int nodecmd_insertBeforeFromScript (Tcl_Interp *interp,
46                                    domNode    *node,
47                                    Tcl_Obj    *cmdObj,
48                                    domNode    *refChild);
49
50/* EOF $RCSfile $ */
51
52/* Emacs Setup Variables */
53/* Local Variables:      */
54/* mode: C               */
55/* indent-tabs-mode: nil */
56/* c-basic-offset: 4     */
57/* End:                  */
58
59