📄 parametersystem.h
字号:
// 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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -