1
0
This commit is contained in:
2025-10-10 02:17:07 +02:00
commit ee9f86004b
48 changed files with 2161 additions and 0 deletions

21
P2/smt4497-P2/Crono.h Normal file
View 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();
};
}