source: XIOS/dev/dev_trunk_graph/src/transformation/grid_algorithm.cpp @ 2021

Last change on this file since 2021 was 2021, checked in by yushan, 3 years ago

Graph intermediate commit to a tmp branch.

  • Property svn:executable set to *
File size: 536 bytes
Line 
1#include "grid_algorithm.hpp"
2#include "generic_algorithm_transformation.hpp"
3
4namespace xios
5{
6
7  CTransformFilter* CGridAlgorithm::createTransformFilter(CGarbageCollector& gc, bool detectMissingValues, double defaultValue)
8  { 
9    return algorithm_->createTransformFilter(gc, this, detectMissingValues, defaultValue) ;
10  }
11
12  bool CGridAlgorithm::isGenerateTranformation(void)
13  { 
14    return algorithm_->isGenerateTransformation() ;
15  } 
16
17
18  StdString CGridAlgorithm::getAlgoName()
19  {
20    return algorithm_->getAlgoName();
21  } 
22}
Note: See TracBrowser for help on using the repository browser.