Stress_UI/include/config.hpp
somebody_master e2b7ac2434
Re-factorización del código
Signed-off-by: somebody_master <somebody_master@somebodyserver.mooo.com>
2020-10-27 16:39:38 +01:00

18 lines
374 B
C++

#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);
// ~Config();
int8_t getNumHilos();
std::string getTiempo();
void setNumHilos(int8_t numHilos);
void setTiempo(std::string timepo);
};
#endif // __CONFIG_HPP_