blob: e77a19569f78077f94b0619d11237d174409243c [file] [log] [blame]
#include <BaSyx/submodel/simple/common/xsd_types/Date.h>
namespace basyx {
namespace submodel {
namespace simple {
Date::Date(const tm & date)
: date{date}
{}
const tm &Date::getDate() const
{
return this->date;
}
void Date::setDate(const tm & date)
{
this->date = date;
}
}
}
}