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
String.h
Go to the documentation of this file.
1
6#pragma once
7
8#include <core/xmlApi.hpp>
9
10namespace core {
11
12template < >
13struct xmlApi < std::string > {
14 static std::string parse ( ext::deque < sax::Token >::iterator & input );
15 static bool first ( const ext::deque < sax::Token >::const_iterator & input );
16 static std::string xmlTagName ( );
17 static void compose ( ext::deque < sax::Token > & output, const std::string & data );
18};
19
20} /* namespace core */
21
Class extending the deque class from the standard library. Original reason is to allow printing of th...
Definition: deque.hpp:44
Definition: normalize.hpp:10
Definition: FordFulkerson.hpp:16
Definition: RandomStringFactory.cpp:12
Definition: xmlApi.hpp:27