9 lines
149 B
C++
9 lines
149 B
C++
![]() |
#pragma once
|
||
|
#include "DFA/DFAGraph.hpp"
|
||
|
#include <string>
|
||
|
|
||
|
namespace converters {
|
||
|
using namespace DFA;
|
||
|
std::string DFAGraphToRegular(DFAGraph&&);
|
||
|
}
|