instruction_ref.hpp 362 Bytes
Newer Older
Paul's avatar
Paul committed
1
2
3
4
#ifndef MIGRAPH_GUARD_INSTRUCTION_REF_HPP
#define MIGRAPH_GUARD_INSTRUCTION_REF_HPP

#include <list>
5
#include <functional>
6
#include <migraph/config.hpp>
Paul's avatar
Paul committed
7

8
namespace migraph { inline namespace MIGRAPH_INLINE_NS {
Paul's avatar
Paul committed
9
10
11
12

struct instruction;
using instruction_ref = std::list<instruction>::iterator;

13
} // inline namespace MIGRAPH_INLINE_NS
Paul's avatar
Paul committed
14
15
16
} // namespace migraph

#endif