Commit 2e46d567 authored by Tomáš Oberhuber's avatar Tomáš Oberhuber
Browse files

Name in tnlObject is deleted.

parent e71395ab
Loading
Loading
Loading
Loading
+0 −3
Original line number Diff line number Diff line
@@ -51,9 +51,6 @@ navierStokesSolver< Mesh, EulerScheme > :: navierStokesSolver()
  T( 0.0 ),
  rhsIndex( 0 )
{

   this -> mesh. setName( "navier-stokes-mesh" );
   this -> dofVector. setName( "navier-stokes-dof-vector" );
}

template< typename Mesh, typename EulerScheme >
+0 −2
Original line number Diff line number Diff line
@@ -42,8 +42,6 @@ class tnlArray : public virtual tnlObject

   tnlArray();

   tnlArray( const tnlString& name );

   static tnlString getType();

   tnlString getTypeVirtual() const;
+0 −9
Original line number Diff line number Diff line
@@ -36,15 +36,6 @@ tnlArray< Element, Device, Index > :: tnlArray()
{
};

/*template< typename Element,
           typename Device,
           typename Index >
tnlArray< Element, Device, Index > :: tnlArray( const tnlString& name )
: size( 0 ), data( 0 )
{
   this -> setName( name );
};*/

template< typename Element,
           typename Device,
           typename Index >
+0 −8
Original line number Diff line number Diff line
@@ -43,8 +43,6 @@ class tnlMultiArray< 1, Element, Device, Index > : public tnlArray< Element, Dev

   tnlMultiArray();

   tnlMultiArray( const tnlString& name );

   static tnlString getType();

   tnlString getTypeVirtual() const;
@@ -124,8 +122,6 @@ class tnlMultiArray< 2, Element, Device, Index > : public tnlArray< Element, Dev

   tnlMultiArray();

   tnlMultiArray( const tnlString& name );

   static tnlString getType();

   tnlString getTypeVirtual() const;
@@ -209,8 +205,6 @@ class tnlMultiArray< 3, Element, Device, Index > : public tnlArray< Element, Dev

   tnlMultiArray();

   tnlMultiArray( const tnlString& name );

   static tnlString getType();

   tnlString getTypeVirtual() const;
@@ -294,8 +288,6 @@ class tnlMultiArray< 4, Element, Device, Index > : public tnlArray< Element, Dev

   tnlMultiArray();

   tnlMultiArray( const tnlString& name );

   static tnlString getType();

   tnlString getTypeVirtual() const;
+0 −6
Original line number Diff line number Diff line
@@ -23,12 +23,6 @@ tnlMultiArray< 1, Element, Device, Index > :: tnlMultiArray()
{
}

/*template< typename Element, typename Device, typename Index >
tnlMultiArray< 1, Element, Device, Index > :: tnlMultiArray( const tnlString& name )
{
   this -> setName( name );
}*/

template< typename Element, typename Device, typename Index >
tnlString tnlMultiArray< 1, Element, Device, Index > :: getType()
{
Loading