/**
* Default constructor.
*/
- CellDataStorage();
+ CellDataStorage() = default;
/**
* Default destructor.
*/
- ~CellDataStorage();
+ ~CellDataStorage() = default;
/**
* Initialize data on the @p cell to store @p number_of_data_points_per_cell of objects of type @p T .
/**
* Default constructor.
*/
- TransferableQuadraturePointData();
+ TransferableQuadraturePointData() = default;
/**
* Default virtual destructor.
*/
- virtual ~TransferableQuadraturePointData();
+ virtual ~TransferableQuadraturePointData() = default;
/**
* Return the total number of values which will be
// ------------------- inline and template functions ----------------
-//--------------------------------------------------------------------
-// TransferableQuadraturePointData
-//--------------------------------------------------------------------
-inline TransferableQuadraturePointData::TransferableQuadraturePointData()
-{}
-
-inline TransferableQuadraturePointData::~TransferableQuadraturePointData()
-{}
-
//--------------------------------------------------------------------
// CellDataStorage
//--------------------------------------------------------------------
-template <typename CellIteratorType, typename DataType>
-CellDataStorage<CellIteratorType,DataType>::
-CellDataStorage()
- :
- Subscriptor()
-{}
-
-
-
-template <typename CellIteratorType, typename DataType>
-CellDataStorage<CellIteratorType,DataType>::
-~CellDataStorage()
-{}
-
-
-
template <typename CellIteratorType, typename DataType>
template <typename T>
void CellDataStorage<CellIteratorType,DataType>::initialize(const CellIteratorType &cell,