#include <Iguana/Studio/interface/IgQtScheduledEvent.h>
Public Member Functions | |
lat::Callback | callback (void) |
IgQtScheduledEvent (lat::Callback action) | |
Static Public Attributes | |
static const int | EVENT_ID = QEvent::User + 1 |
Private Attributes | |
lat::Callback | m_callback |
Definition at line 17 of file IgQtScheduledEvent.h.
IgQtScheduledEvent::IgQtScheduledEvent | ( | lat::Callback | action | ) |
Definition at line 15 of file IgQtScheduledEvent.cc.
00016 : QCustomEvent (EVENT_ID), 00017 m_callback (callback) 00018 { 00019 }
lat::Callback IgQtScheduledEvent::callback | ( | void | ) |
Definition at line 22 of file IgQtScheduledEvent.cc.
References m_callback.
Referenced by IgQtScheduledEventExecutor::customEvent().
00023 { 00024 return m_callback; 00025 }
const int IgQtScheduledEvent::EVENT_ID = QEvent::User + 1 [static] |
Definition at line 20 of file IgQtScheduledEvent.h.
lat::Callback IgQtScheduledEvent::m_callback [private] |