11 lines
192 B
C++
11 lines
192 B
C++
#pragma once
|
|
#include "regular/RegularTree.hpp"
|
|
#include "NFA/NFAGraph.hpp"
|
|
|
|
namespace converters {
|
|
using namespace NFA;
|
|
using namespace regular;
|
|
|
|
NFAGraph RegularToNFAGraph(RegularTree&&);
|
|
}
|