Commit a0dea9d1651497b7c53b3a0c922a4506d6d9e43b

Authored by Menouard AZIB
1 parent 1759ade3

Add a writeDataFile's declaration inside InstantPlot

src/ParamOutputImpl/Plot/InstantPlot/InstantPlot.cc
... ... @@ -1433,4 +1433,10 @@ void InstantPlot::writeContext(ContextFileWriter &writer, AMDA::Parameters::Time
1433 1433  
1434 1434 }
1435 1435  
  1436 +void InstantPlot::writeDataFile(){
  1437 + std::string fileName = _panel->_page->fileDataName;
  1438 + LOG4CXX_DEBUG(gLogger, "Name of the data file is " << fileName);
  1439 +
  1440 +}
  1441 +
1436 1442 } /* namespace plot */
... ...
src/ParamOutputImpl/Plot/InstantPlot/InstantPlot.hh
... ... @@ -115,7 +115,7 @@ public:
115 115 }
116 116  
117 117 protected:
118   -
  118 + virtual void writeDataFile();
119 119 /**
120 120 * @overload PanelPlotOutput::drawFills(double startDate, double stopDate)
121 121 * @brief Draw fill area between parameter and constant or between parameters
... ...