📄 eognuplot1dsnapshot.cpp
字号:
#ifdef HAVE_CONFIG_H#include <config.h>#endif#include "eoGnuplot1DSnapshot.h"eoMonitor& eoGnuplot1DSnapshot::operator()(){ // update file using the eoFileMonitor method eoFileSnapshot::operator()();#ifdef HAVE_GNUPLOT // sends plot order to gnuplot std::ostringstream os; os << "set title 'Gen. " << getCounter() << "'; plot '" // mk: had to use getFilename().c_str(), // because it seems the string(stream) lib is screwed in gcc3.2 << getFileName().c_str() << "' notitle with points ps " << pointSize << std::endl; PipeComSend(gpCom, os.str().c_str());#endif return *this;}// Local Variables:// c-file-style: "Stroustrup"// fill-column: 80// End:
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -