FreeFem 3.5.x
femTreeNode.hpp
1// -*- Mode: c++ -*-
2//
3// SUMMARY:
4// USAGE:
5//
6// ORG: Christophe Prud'homme
7// AUTHOR: Christophe Prud'homme
8// E-MAIL: prudhomm@users.sourceforge.net
9//
10// DESCRIPTION:
11/*
12 This program is free software; you can redistribute it and/or modify
13 it under the terms of the GNU General Public License as published by
14 the Free Software Foundation; either version 2 of the License, or
15 (at your option) any later version.
16
17 This program is distributed in the hope that it will be useful,
18 but WITHOUT ANY WARRANTY; without even the implied warranty of
19 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 GNU General Public License for more details.
21
22 You should have received a copy of the GNU General Public License
23 along with this program; if not, write to the Free Software
24 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
25
26*/
27//
28// < description of the code here>
29//
30// DESCRIP-END.
31//
32
33#ifndef __noeud_H
34#ifdef __GNUG__
35#pragma interface
36#endif
37#define __noeud_H 1
38
39#if defined(HAVE_CONFIG_H)
40#include <config.h>
41#endif /* HAVE_CONFIG_H */
42
43
44#include <femLexical.hpp>
45
46namespace fem
47{
48DECLARE_CLASS( noeud );
49
50
60 class noeud
61 {
62 public:
63
64
68
69
71
75
76 noeud();
77 noeud(const noeud&);
78 ~noeud();
79
80 Symbol symb;
81 creal value;
82 ident *name;
83 long junk;
84 char *path;
85 struct noeud *l1, *l2, *l3, *l4;
86
88 };
89}
90#endif /* __noeud_H */
Definition: femMisc.hpp:88
Definition: femIdentifier.hpp:72
Definition: femTreeNode.hpp:61
noeud()
Typedefs.
Definition: femTreeNode.cpp:43
#define DECLARE_CLASS(tag)
Declare class , class pointer , const pointer, class reference and const class reference types for cl...
Definition: femCommon.hpp:64

This is the FreeFEM reference manual
Provided by The KFEM project