DebugInstanceListener.cpp
Go to the documentation of this file.
2 
3 namespace iv
4 {
5 
7  inst( inst ),
8  os( target )
9 {
10  if( this->os )
11  this->os->AddDebugListener( this );
12 }
13 
15 {
16  if( this->os )
17  this->os->RemoveDebugListener( this );
18 }
19 
21 {
22  return this->inst;
23 }
24 
25 }