mirror of https://github.com/AxioDL/metaforce.git
20 lines
228 B
C++
20 lines
228 B
C++
|
#ifndef HECLBACKEND_HPP
|
||
|
#define HECLBACKEND_HPP
|
||
|
|
||
|
namespace HECL
|
||
|
{
|
||
|
namespace Frontend {class IR;}
|
||
|
namespace Backend
|
||
|
{
|
||
|
|
||
|
class IBackend
|
||
|
{
|
||
|
public:
|
||
|
virtual void reset(const Frontend::IR& ir)=0;
|
||
|
};
|
||
|
|
||
|
}
|
||
|
}
|
||
|
|
||
|
#endif // HECLBACKEND_HPP
|