You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
project-kyoku/src/inputtype.cpp

14 lines
204 B
C++

#include "inputtype.h"
InputType::InputType(const microsec &timestamp) :
_timestamp(timestamp)
{}
InputType::~InputType()
{}
const microsec& InputType::timestamp() const
{
return _timestamp;
}