monorepo
This commit is contained in:
21
P2/smt4497-P2/Crono.h
Normal file
21
P2/smt4497-P2/Crono.h
Normal file
@@ -0,0 +1,21 @@
|
||||
#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();
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user