// instrument.cpp: implementation of the Instrument class.
//
//////////////////////////////////////////////////////////////////////

#include "appinfo.h"
#include "debug.h"
#include "const.h"
#include "instrument.h"


const char Instrument::_id[] = "LRS";
const char Instrument::_location[] = "EMBEDDED v1 built "__DATE__" at "__TIME__;


//////////////////////////////////////////////////////////////////////
// Construction/Destruction
//////////////////////////////////////////////////////////////////////

Instrument::Instrument()
{

}

Instrument::~Instrument()
{
	DPRINTF_L3( "Destructing Instrument Class \n");				
}
const char *Instrument::location(){return _location;};
const char *Instrument::id(){return _id;};