instruction_ref.hpp 355 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
9
namespace migraph {
inline namespace MIGRAPH_INLINE_NS {
Paul's avatar
Paul committed
10
11
12
13

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

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

#endif