summaryrefslogtreecommitdiffhomepage
path: root/SixenseSDK/include/sixense_utils/time.hpp
blob: 314ed64a57e9c3bfbfae4bc035dc83593e0e5da2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/*
 *
 * SIXENSE CONFIDENTIAL
 *
 * Copyright (C) 2011 Sixense Entertainment Inc.
 * All Rights Reserved
 *
 */

#include "sixense_utils/export.hpp"

namespace sixenseUtils {

	class SIXENSE_UTILS_EXPORT Time {
	public:
		static double getTimeInMilliseconds();

		// Return the number of milliseconds since this was last called with the given token
		static double getElapsedMilliseconds( int token );
	};

}