Stress_UI/include/config.hpp
somebody_master d12d6ae69b Cambiar permisos a 750
Signed-off-by: somebody_master <somebody_master@somebodyserver.mooo.com>
2021-03-26 16:00:51 +01:00

17 lines
354 B
C++
Executable File

#include <string>
#ifndef __CONFIG_HPP_
#define __CONFIG_HPP_
class Config {
private:
int8_t numHilos;
std::string tiempo;
public:
Config(int8_t numHilos, std::string tiempo);
int8_t getNumHilos();
std::string getTiempo();
void setNumHilos(int8_t numHilos);
void setTiempo(std::string tiempo);
};
#endif // __CONFIG_HPP_