HAL
graph_shader.cpp
Go to the documentation of this file.
2 #include <assert.h>
3 
4 namespace hal
5 {
6  GraphShader::GraphShader(const GraphContext* const context) :
7  mContext(context)
8  {
9  assert(context);
10  }
11 
13  {
14  return mShading;
15  }
16 }
Logical container for modules, gates, and nets.
Definition: graph_context.h:55
GraphShader(const GraphContext *const context)
Definition: graph_shader.cpp:6
const Shading & getShading()