📄 h5diagg.h
字号:
//h5diagg.h#ifndef __H5DIAGG_H#define __H5DIAGG_H#ifdef UNIX#include <config.h>#endif#include "part1g.h"//===================DiagParams Class// base class for all diagnostics// abstractclass H5DiagParams : public ParameterGroup{protected:public: StringParameter VarName; StringParameter fileName; IntParameter dumpPeriod; /** * The variables: *VarName -- name of diagnostic to be dumped *dumpPeriod *fileName */ H5DiagParams(); // since boundaries are all placed on grid, this class needs // to know the dimensions of the grid virtual ~H5DiagParams() {}; }; #endif // __H5DIAGG_H
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -