FreeFem 3.5.x
List of all members
fem::function Class Reference

Explanation

<Describe class here>

Author
Christophe Prud'homme Chris.nosp@m.toph.nosp@m.e.Pru.nosp@m.dhom.nosp@m.me@an.nosp@m.n.ju.nosp@m.ssieu.nosp@m..fr
See also
Version
#$Id: femFunction.hpp,v 1.1 2001/06/26 17:37:54 prudhomm Exp $#
 function ()
 Typedefs. More...
 
 function (function const &)
 
 ~function ()
 
functionoperator= (function const &)
 

Constructor & Destructor Documentation

◆ function() [1/2]

fem::function::function ( )

Typedefs.

Constructors, destructor and methods

44 :
45 __name( 0 ),
46 __arg1( 0 ),
47 __arg2( 0 ),
48 __def( 0 )
49{
50}

◆ function() [2/2]

fem::function::function ( function const &  f)
53 :
54 __name( f.__name ),
55 __arg1( f.__arg1 ),
56 __arg2( f.__arg2 ),
57 __def( f.__def )
58
59{
60}

◆ ~function()

fem::function::~function ( )
62{
63}

Member Function Documentation

◆ operator=()

function & fem::function::operator= ( function const &  f)
66{
67 if ( &f != this )
68 {
69 __name = f.__name;
70 __arg1 = f.__arg1;
71 __arg2 = f.__arg2;
72 __def = f.__def;
73 }
74 return *this;
75}

The documentation for this class was generated from the following files:

This is the FreeFEM reference manual
Provided by The KFEM project