mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 15:58:11 +00:00
Introduce LibCore and move GElapsedTimer => CElapsedTimer.
I need a layer somewhere between AK (usable both by userspace and kernel) and LibGUI (usable by userspace except WindowServer.) So here's LibCore.
This commit is contained in:
parent
a74f3615ac
commit
5e0577a042
21 changed files with 98 additions and 37 deletions
|
@ -1,6 +1,6 @@
|
|||
#pragma once
|
||||
|
||||
#include <LibGUI/GElapsedTimer.h>
|
||||
#include <LibCore/CElapsedTimer.h>
|
||||
#include <LibGUI/GEvent.h>
|
||||
#include <LibGUI/GObject.h>
|
||||
#include <SharedGraphics/Rect.h>
|
||||
|
@ -174,5 +174,5 @@ private:
|
|||
bool m_fill_with_background_color { false };
|
||||
bool m_visible { true };
|
||||
|
||||
GElapsedTimer m_click_clock;
|
||||
CElapsedTimer m_click_clock;
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue