Dar formato al código
This commit is contained in:
@ -2,15 +2,15 @@
|
||||
#ifndef __CONFIG_HPP_
|
||||
#define __CONFIG_HPP_
|
||||
class Config {
|
||||
private:
|
||||
int8_t numHilos;
|
||||
std::string tiempo;
|
||||
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);
|
||||
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_
|
||||
|
Reference in New Issue
Block a user