Subversion Repositories HomeAutomation

Rev

Rev 1601 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | SVN | RSS feed

Rev 1601 Rev 1646
Line 45... Line 45...
45
    static void Create();
45
    static void Create();
46
    static void Delete();
46
    static void Delete();
47
   
47
   
48
    void ConnectSlots(const SignalOnTimeout::slot_type& slot_on_timeout);
48
    void ConnectSlots(const SignalOnTimeout::slot_type& slot_on_timeout);
49
   
49
 
-
 
50
    TimerId SetAlarm(std::string time);
50
    TimerId Set(unsigned int timeout, bool repeat);
51
    TimerId SetTimer(unsigned int timeout, bool repeat);
51
    void Cancel(TimerId id);
52
    void Cancel(TimerId id);
52
   
53
   
53
private:
54
private:
54
    typedef std::map<TimerId, Timer::Pointer> TimerList;
55
    typedef std::map<TimerId, Timer::Pointer> TimerList;
55
   
56