Datafile: Added ::getLatestInterval

This commit is contained in:
Paul Beckingham 2016-03-20 11:31:28 -04:00
parent fbe6584447
commit 221cf863b2
2 changed files with 8 additions and 0 deletions

View file

@ -40,6 +40,12 @@ std::string Datafile::name () const
return _name;
}
////////////////////////////////////////////////////////////////////////////////
Interval Datafile::getLatestInterval () const
{
return Interval ();
}
////////////////////////////////////////////////////////////////////////////////
void Datafile::addExclusion (const std::string& exclusion)
{

View file

@ -38,6 +38,8 @@ public:
void initialize (const std::string&);
std::string name () const;
Interval getLatestInterval () const;
void addExclusion (const std::string&);
void addInterval (const Interval&);
void modifyInterval (const Interval&);