#pragma once #include "Strings.hpp" #include "Automata.hpp" #include "Buffer2D.hpp" namespace tp { template class ContextFreeAutomata { public: ContextFreeAutomata() = default; void construct(const FiniteStateAutomation& automata) {} }; }