Stress_UI/include/cpu_mon.hpp
somebody_master c947f1fb38
Añadir constructor a CpuMon
Signed-off-by: somebody_master <somebody_master@somebodyserver.mooo.com>
2021-05-07 00:21:20 +02:00

20 lines
279 B
C++

#include "ui.hpp"
#include <string>
#ifdef _WIN32
#include <Windows.h>
#else
#include <unistd.h>
#endif
#ifndef CPU_MON_HPP_
#define CPU_MON_HPP_
class CpuMon {
private:
int8_t num_hilos;
public:
CpuMon(int8_t num_hilos);
void iniciarCPU_MON();
};
#endif // CPU_MON_HPP_