⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 xmlfunction.h

📁 利用C
💻 H
字号:
// Copyright (C) 2006 Johan Jansson and Anders Logg.// Licensed under the GNU LGPL Version 2.1.//// First added:  2006-02-15// Last changed: 2006-05-23#ifndef __XML_FUNCTION_H#define __XML_FUNCTION_H#include "XMLObject.h"namespace dolfin{  class Function;    class XMLFunction : public XMLObject  {  public:    XMLFunction(Function& f);        void startElement(const xmlChar* name, const xmlChar** attrs);    void endElement  (const xmlChar* name);      private:        enum ParserState { OUTSIDE, INSIDE_FUNCTION, DONE };        void readFunction  (const xmlChar* name, const xmlChar** attrs);        Function& f;    ParserState state;      };  }#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -