This repository has been archived on 2024-01-25. You can view files and clone it, but cannot push or open issues or pull requests.
XF/src/simplified/xf/core/timeout.cpp

10 lines
213 B
C++
Raw Normal View History

2023-09-19 15:59:49 +02:00
#include "xf/timeout.h"
// TODO: Implement code for XFTimeout class
2023-09-28 11:49:03 +02:00
XFTimeout::XFTimeout(int id, int interval, interface::XFBehavior *pBehavior):
XFEvent(XFEventType::Timeout, id), interval_(interval) {
}