Init commit
This commit is contained in:
17
include/config.hpp
Normal file
17
include/config.hpp
Normal file
@ -0,0 +1,17 @@
|
||||
#include <string>
|
||||
#ifndef __CONFIG_HPP_
|
||||
#define __CONFIG_HPP_
|
||||
class Config {
|
||||
private:
|
||||
int8_t *numHilos;
|
||||
std::string *tiempo;
|
||||
|
||||
public:
|
||||
Config(int8_t nh, std::string t);
|
||||
~Config();
|
||||
int8_t getNumHilos();
|
||||
std::string getTiempo();
|
||||
void setNumHilos(int8_t nh);
|
||||
void setTiempo(std::string t);
|
||||
};
|
||||
#endif // __CONFIG_HPP_
|
Reference in New Issue
Block a user