8 lines
165 B
C++
8 lines
165 B
C++
|
#pragma once
|
||
|
#include "DFA/DFAGraph.hpp"
|
||
|
|
||
|
namespace converters {
|
||
|
using namespace DFA;
|
||
|
DFAGraph DFAGraphToFDFAGraph(DFAGraph&&, const std::vector<char>& alphabet);
|
||
|
}
|