1 #include "granulePosInterpreter.h" 2 GranulePosInterpreter()3GranulePosInterpreter::GranulePosInterpreter() 4 : initialized(false), actualGranulePosition(0) 5 { 6 } 7 ~GranulePosInterpreter()8GranulePosInterpreter::~GranulePosInterpreter() 9 { 10 } 11 getPosition()12int64 GranulePosInterpreter::getPosition() 13 { 14 return(actualGranulePosition); 15 } 16 getActTime()17double GranulePosInterpreter::getActTime() 18 { 19 return(getTime(actualGranulePosition)); 20 } 21