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

📄 concept.h

📁 一个类似STL的自动机的源代码库
💻 H
字号:
/* * ASTL - the Automaton Standard Template Library. * C++ generic components for Finite State Automata handling. * Copyright (C) 2000-2003 Vincent Le Maout (vincent.lemaout@chello.fr). *  * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any later version. *  * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU * Lesser General Public License for more details. *  * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA * */#ifndef ASTL_CONCEPT_H#define ASTL_CONCEPT_H#include <astl.h>ASTL_BEGIN_NAMESPACE// Defines a hierarchy of concepts needed for dispatching:struct cursor_concept {   typedef cursor_concept concept;};struct transition_cursor_concept {  typedef transition_cursor_concept concept;};struct forward_cursor_concept : public cursor_concept, public transition_cursor_concept {  typedef forward_cursor_concept concept;};struct stack_cursor_concept : public transition_cursor_concept {  typedef stack_cursor_concept concept;};struct queue_cursor_concept : public transition_cursor_concept {  typedef queue_cursor_concept concept;};struct dfirst_cursor_concept {  typedef dfirst_cursor_concept concept;};struct bfirst_cursor_concept {  typedef bfirst_cursor_concept concept;};struct DFA_concept {  typedef DFA_concept concept;};struct NFA_concept {  typedef NFA_concept concept;};ASTL_END_NAMESPACE#endif // ASTL_CONCEPT_H

⌨️ 快捷键说明

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