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