COVISE Core
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros
coWristWatch.h
Go to the documentation of this file.
1 /* This file is part of COVISE.
2 
3  You can use it under the terms of the GNU Lesser General Public License
4  version 2.1 or later, see lgpl-2.1.txt.
5 
6  * License: LGPL 2+ */
7 
8 #ifndef COVISE_WRIST_WATCH_H
9 #define COVISE_WRIST_WATCH_H
10 
11 #include "coExport.h"
12 
13 struct timeval;
14 
15 namespace covise
16 {
17 
19 {
20 private:
21  timeval *myClock;
22 
23 public:
24  coWristWatch();
25  ~coWristWatch();
26 
27  void reset();
28  float elapsed();
29 };
30 }
31 #endif
#define UTILEXPORT
Definition: coExport.h:194
Definition: coWristWatch.h:18
GLboolean reset
Definition: khronos-glext.h:6369
timeval * myClock
Definition: coWristWatch.h:21