1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
|
#include "StOpt/core/grids/SpaceGridGeners.h"
// add include for all derived classes
#include "StOpt/core/grids/RegularLegendreGridGeners.h"
#include "StOpt/core/grids/GeneralSpaceGridGeners.h"
#include "StOpt/core/grids/RegularSpaceGridGeners.h"
#include "StOpt/core/grids/SparseSpaceGridBoundGeners.h"
#include "StOpt/core/grids/SparseSpaceGridNoBoundGeners.h"
// Register all wrappers
SerializationFactoryForSpaceGrid::SerializationFactoryForSpaceGrid()
{
this->registerWrapper<RegularLegendreGridGeners>();
this->registerWrapper<GeneralSpaceGridGeners>();
this->registerWrapper<RegularSpaceGridGeners>();
this->registerWrapper<SparseSpaceGridBoundGeners>();
this->registerWrapper<SparseSpaceGridNoBoundGeners>();
}
|