📄 pythonfile.h
字号:
// Copyright (C) 2003-2005 Johan Hoffman and Anders Logg.// Licensed under the GNU LGPL Version 2.1.//// First added: 2003-07-15// Last changed: 2005#ifndef __PYTHON_FILE_H#define __PYTHON_FILE_H#include <dolfin/common/types.h>#include "GenericFile.h"namespace dolfin{ // Represents input/output of data in a format readable by Python // (Numeric). The data is written to several files (the variable // name is appended to the base file name) to enable incremental // output in an efficient way. class PythonFile : public GenericFile { public: PythonFile(const std::string filename); virtual ~PythonFile(); // Input // Output void operator<< (Sample& sample); std::string filename_t, filename_u, filename_k, filename_r; }; }#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -