xmlfunction.h

来自「利用C」· C头文件 代码 · 共 40 行

H
40
字号
// 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 + =
减小字号Ctrl + -
显示快捷键?