metaforce/hecl/include/HECL/Backend/Backend.hpp

20 lines
229 B
C++
Raw Normal View History

2015-10-10 06:59:40 +00:00
#ifndef HECLBACKEND_HPP
#define HECLBACKEND_HPP
namespace HECL
{
2015-10-12 04:38:49 +00:00
namespace Frontend {struct IR;}
2015-10-10 06:59:40 +00:00
namespace Backend
{
class IBackend
{
public:
virtual void reset(const Frontend::IR& ir)=0;
};
}
}
#endif // HECLBACKEND_HPP