00001 //===-- Timer.h -------------------------------------------------*- C++ -*-===// 00002 // 00003 // The KLEE Symbolic Virtual Machine 00004 // 00005 // This file is distributed under the University of Illinois Open Source 00006 // License. See LICENSE.TXT for details. 00007 // 00008 //===----------------------------------------------------------------------===// 00009 00010 #ifndef KLEE_TIMER_H 00011 #define KLEE_TIMER_H 00012 00013 #include <stdint.h> 00014 00015 namespace klee { 00016 class WallTimer { 00017 uint64_t startMicroseconds; 00018 00019 public: 00020 WallTimer(); 00021 00023 uint64_t check(); 00024 }; 00025 } 00026 00027 #endif 00028
1.5.8