Algorithms Library Toolkit
A toolkit for algorithms, especially for algorithms on formal languages
All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Concepts
StartSymbol.h
Go to the documentation of this file.
1
6#pragma once
7
9#include <core/xmlApi.hpp>
10
11namespace core {
12
13template < >
14struct xmlApi < alphabet::StartSymbol > {
16 static bool first ( const ext::deque < sax::Token >::const_iterator & input );
17 static std::string xmlTagName ( );
18 static void compose ( ext::deque < sax::Token > & output, const alphabet::StartSymbol & data );
19};
20
21} /* namespace core */
22
Represents start symbol used as initializing symbol of a string.
Definition: StartSymbol.h:35
Class extending the deque class from the standard library. Original reason is to allow printing of th...
Definition: deque.hpp:44
Definition: BarSymbol.cpp:12
Definition: normalize.hpp:10
Definition: xmlApi.hpp:27