aboutsummaryrefslogtreecommitdiffhomepage
path: root/include/Platform.h
diff options
context:
space:
mode:
authornyamatongwe <unknown>2001-11-15 00:49:20 +0000
committernyamatongwe <unknown>2001-11-15 00:49:20 +0000
commitaa63b1842ce03c992bd695c4dd7d3d940bf47f64 (patch)
treebcbc3dea4f72d89c37ec8ff25f9b15e90b8f8400 /include/Platform.h
parent07e096fe7048742e3254cbd0fddb1299495f4bc1 (diff)
downloadscintilla-mirror-aa63b1842ce03c992bd695c4dd7d3d940bf47f64.tar.gz
Added construction from double to SString.
Added ElapsedTime class to Platform.
Diffstat (limited to 'include/Platform.h')
-rw-r--r--include/Platform.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/include/Platform.h b/include/Platform.h
index 5281260c4..fc0e1fe79 100644
--- a/include/Platform.h
+++ b/include/Platform.h
@@ -386,6 +386,13 @@ public:
void Show(Point pt, Window &w);
};
+class ElapsedTime {
+ double beginTime;
+public:
+ ElapsedTime();
+ double Duration(bool reset=false);
+};
+
/**
* Platform class used to retrieve system wide parameters such as double click speed
* and chrome colour. Not a creatable object, more of a module with several functions.