summaryrefslogtreecommitdiff
path: root/LibCore/CTimer.h
AgeCommit message (Collapse)Author
2019-07-04Libraries: Create top level directory for libraries.Andreas Kling
Things were getting a little crowded in the project root, so this patch moves the Lib*/ directories into Libraries/.
2019-05-28Add clang-format fileRobin Burchell
Also run it across the whole tree to get everything using the One True Style. We don't yet run this in an automated fashion as it's a little slow, but there is a snippet to do so in makeall.sh.
2019-04-18LibCore: Add CTimer::restart() and make set_interval() take effect soon.Andreas Kling
2019-04-14LibCore: Add a convenience constructor for CTimer.Andreas Kling
new CTimer(250, [] { thing_to_do_every_250_msec(); });
2019-04-12LibCore: Move LibGUI/GTimer to LibCore/CTimer.Andreas Kling