Subversion Repositories public iLand

Rev

Rev 341 | Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
1
 
340 werner 2
#ifndef TIMEEVENTS_H
3
#define TIMEEVENTS_H
4
#include <QtCore>
5
/** */
6
class TimeEvents
7
{
8
public:
9
    TimeEvents();
10
    void clear() { mData.clear(); }
11
    bool loadFromString(const QString &source);
12
    bool loadFromFile(const QString &fileName);
13
 
14
private:
15
    QMultiMap<int, QPair<QString, QVariant> > mData;
16
};
17
 
18
#endif // TIMEEVENTS_H