blob: eb27f271dfb7a6b862278298856e12806a454789 [file] [log] [blame]
Zane Shelley465e0b32019-04-17 10:15:39 -05001
2#include "hei_isolator.hpp";
3
4namespace HEI
5{
6
7Isolator::Isolator()
8{
9 HEI_TRAC( "Isolator::Isolator()" );
10}
11
12Isolator::~Isolator()
13{
14 HEI_TRAC( "Isolator::~Isolator()" );
15}
16
17void Isolator::initialize()
18{
19 HEI_TRAC( "Isolator::initialize()" );
20}
21
22void Isolator::isolate()
23{
24 HEI_TRAC( "Isolator::isolate()" );
25}
26
27}; // end namespace HEI
28