Re: [Libmesh-users] System class Definition

2008-09-18 Thread David Fuentes
Roy, John, Thank you very much, df On Thu, 18 Sep 2008, Roy Stogner wrote: > > On Thu, 18 Sep 2008, David Fuentes wrote: > >> System is defined as a derived class of a template class >> ReferenceCountedObject ? >> >> I've never seen this before. Are both "System" referring >> to the sa

Re: [Libmesh-users] System class Definition

2008-09-18 Thread Roy Stogner
On Thu, 18 Sep 2008, David Fuentes wrote: > System is defined as a derived class of a template class > ReferenceCountedObject ? > > I've never seen this before. Are both "System" referring > to the same class? Is the System in the template the > same as the System in the class definition? Yes.

Re: [Libmesh-users] System class Definition

2008-09-18 Thread John Peterson
On Thu, Sep 18, 2008 at 9:45 AM, John Peterson <[EMAIL PROTECTED]> wrote: > On Thu, Sep 18, 2008 at 9:42 AM, David Fuentes <[EMAIL PROTECTED]> wrote: >> > >> I've never seen this before. Are both "System" referring >> to the same class? Is the System in the template the >> same as the System in th

Re: [Libmesh-users] System class Definition

2008-09-18 Thread John Peterson
On Thu, Sep 18, 2008 at 9:42 AM, David Fuentes <[EMAIL PROTECTED]> wrote: > > I've never seen this before. Are both "System" referring > to the same class? Is the System in the template the > same as the System in the class definition? Yeah, it's the same system. If you take a look at the templ

[Libmesh-users] System class Definition

2008-09-18 Thread David Fuentes
In the system class definition $LIBMESH_DIR/include/solvers/system.h // // System class definition class System : public ReferenceCountedObject { protected: . . . System is defined as a derived class of a template class Refer