mfile.h
来自「Dolfin provide a high-performance linear」· C头文件 代码 · 共 38 行
H
38 行
// Copyright (C) 2003-2006 Johan Hoffman and Anders Logg.// Licensed under the GNU LGPL Version 2.1.//// First added: 2003-07-15// Last changed: 2006-05-07#ifndef __M_FILE_H#define __M_FILE_H#include <dolfin/constants.h>#include "GenericFile.h"namespace dolfin{ class MFile : public GenericFile { public: MFile(const std::string filename); virtual ~MFile(); // Input // Output void operator<< (Vector& x); virtual void operator<< (Matrix& A) = 0; void operator<< (Mesh& mesh); void operator<< (Function& u); void operator<< (Sample& sample); }; }#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?