Stress_UI/include/config.hpp

17 lines
354 B
C++
Raw Normal View History

2020-10-20 14:16:46 +02:00
#include <string>
#ifndef __CONFIG_HPP_
#define __CONFIG_HPP_
class Config {
private:
int8_t numHilos;
std::string tiempo;
2020-10-20 14:16:46 +02:00
public:
Config(int8_t numHilos, std::string tiempo);
int8_t getNumHilos();
std::string getTiempo();
void setNumHilos(int8_t numHilos);
void setTiempo(std::string tiempo);
2020-10-20 14:16:46 +02:00
};
#endif // __CONFIG_HPP_