parametersystem.h
来自「利用C」· C头文件 代码 · 共 36 行
H
36 行
// Copyright (C) 2005-2006 Anders Logg.// Licensed under the GNU LGPL Version 2.1.//// First added: 2005-12-19// Last changed: 2006-02-08#ifndef __PARAMETER_SYSTEM_H#define __PARAMETER_SYSTEM_H#include "ParameterList.h"namespace dolfin{ /// This class holds a global database of parameters for DOLFIN, /// implemented as a set of (key, value) pairs. Supported value /// types are real, int, bool, and string. class ParameterSystem : public ParameterList { public: /// Singleton instance of global parameter database static ParameterSystem parameters; private: // Constructor ParameterSystem(); };}#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?