blob: ff58877477589014dc168b6f7f25a34097f64d0c [file] [log] [blame]
Zane Shelley465e0b32019-04-17 10:15:39 -05001
Ben Tyner941aaeb2019-04-26 17:38:10 -05002#include "hei_isolator.hpp"
Zane Shelley465e0b32019-04-17 10:15:39 -05003
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
Ben Tyner941aaeb2019-04-26 17:38:10 -050027} // end namespace HEI