00001 /* 00002 * Sensor.cpp 00003 * 00004 * Created on: Apr 28, 2009 00005 * Author: jgoppert 00006 */ 00007 00008 #include "Sensor.h" 00009 #include <iostream> 00010 00011 namespace uvsim 00012 { 00013 00014 Sensor::Sensor() 00015 { 00016 std::cout << "Creating Sensor." << std::endl; 00017 } 00018 00019 Sensor::~Sensor() 00020 { 00021 std::cout << "Destroying Sensor." << std::endl; 00022 } 00023 00024 }