1
0
This repository has been archived on 2025-11-01. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
ss-monorepo/P2/smt4497-P2/Crono.h
2025-10-10 02:17:07 +02:00

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();
};
}