Subversion Repositories public iLand

Rev

Rev 340 | Rev 639 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 340 Rev 341
Line 5... Line 5...
5
/** */
5
/** */
6
class TimeEvents
6
class TimeEvents
7
{
7
{
8
public:
8
public:
9
    TimeEvents();
9
    TimeEvents();
-
 
10
    // setup
10
    void clear() { mData.clear(); }
11
    void clear() { mData.clear(); }
11
    bool loadFromString(const QString &source);
12
    bool loadFromString(const QString &source);
12
    bool loadFromFile(const QString &fileName);
13
    bool loadFromFile(const QString &fileName);
-
 
14
    // excecute
-
 
15
    void run(); ///< execute all settings
13
16
14
private:
17
private:
15
    QMultiMap<int, QPair<QString, QVariant> > mData;
18
    QMultiMap<int, QPair<QString, QVariant> > mData;
16
};
19
};
17
20