21 lines
350 B
C++
21 lines
350 B
C++
#pragma once
|
|
|
|
#include <stdint.h>
|
|
#include <stdio.h>
|
|
#include <stdarg.h>
|
|
#include <Windows.h>
|
|
|
|
namespace ss {
|
|
class Crono {
|
|
|
|
private: // por defecto todo es private
|
|
int64_t _ticsAntes = 0;
|
|
int64_t _ticsPorSegundoDelTimerDelPC = -1;
|
|
static const int TAM_CADENA_DEBUG = 64;
|
|
public:
|
|
Crono();
|
|
~Crono();
|
|
bool Inicio();
|
|
double Lee();
|
|
};
|
|
} |