/* * String.h * * Created on: Apr 10, 2013 * Author: Jan Travnicek */ #ifndef STRING_H_ #define STRING_H_ #include "../std/visitor.hpp" #include "../common/wrapper.hpp" #include "StringBase.h" namespace string { /** * Wrapper around automata. */ typedef alib::wrapper<StringBase> String; } /* namespace string */ #endif /* STRING_H_ */