diff options
author | Michael Meeks <michael.meeks@collabora.com> | 2015-11-25 10:35:37 +0000 |
---|---|---|
committer | Michael Meeks <michael.meeks@collabora.com> | 2015-11-25 13:17:51 +0000 |
commit | 2092a4588888bf7d9013415e2b9a2c5cd6113a7f (patch) | |
tree | 47a0280f1b8a412c60f37be321392fa9ddfaf021 /include | |
parent | 02044b5d2711e837cfc8680a265614e138e79d86 (diff) |
vcl: move private impl. detail of Scheduler out of global header.
Change-Id: Iee56131a15f9554c263406356456f65694515719
Diffstat (limited to 'include')
-rw-r--r-- | include/vcl/scheduler.hxx | 15 |
1 files changed, 2 insertions, 13 deletions
diff --git a/include/vcl/scheduler.hxx b/include/vcl/scheduler.hxx index 5771f3af782f..b1152a012251 100644 --- a/include/vcl/scheduler.hxx +++ b/include/vcl/scheduler.hxx @@ -22,20 +22,9 @@ #include <vcl/dllapi.h> -struct ImplSVData; class Scheduler; -struct ImplSchedulerData -{ - ImplSchedulerData* mpNext; // Pointer to the next element in list - Scheduler* mpScheduler; // Pointer to VCL Scheduler instance - bool mbDelete; // Destroy this scheduler? - bool mbInScheduler; // Scheduler currently processed? - sal_uInt64 mnUpdateTime; // Last Update Time - - void Invoke(); - - static ImplSchedulerData *GetMostImportantTask( bool bTimer ); -}; +struct ImplSVData; +struct ImplSchedulerData; enum class SchedulerPriority { HIGHEST = 0, |