15 lines
No EOL
244 B
C++
15 lines
No EOL
244 B
C++
#pragma once
|
|
|
|
#include <pslang/ir/node_fwd.hpp>
|
|
|
|
#include <iostream>
|
|
|
|
namespace pslang::ir
|
|
{
|
|
|
|
struct module_context;
|
|
|
|
void print(std::ostream & out, node_list const & nodes);
|
|
void print(std::ostream & out, module_context const & context);
|
|
|
|
} |