push
This commit is contained in:
@@ -0,0 +1,26 @@
|
||||
#ifndef BITCOINEXCHANGE_HPP
|
||||
#define BITCOINEXCHANGE_HPP
|
||||
|
||||
#include <map>
|
||||
#include <string>
|
||||
|
||||
class BitcoinExchange
|
||||
{
|
||||
public:
|
||||
BitcoinExchange();
|
||||
BitcoinExchange(const BitcoinExchange &other);
|
||||
BitcoinExchange &operator=(const BitcoinExchange &other);
|
||||
~BitcoinExchange();
|
||||
|
||||
void loadDatabase(const std::string &filename);
|
||||
void processInput(const std::string &filename);
|
||||
|
||||
private:
|
||||
std::map<std::string, float> _data;
|
||||
|
||||
float getRate(const std::string &date) const;
|
||||
bool isValidDate(const std::string &date) const;
|
||||
bool isValidValue(const std::string &value, float &out) const;
|
||||
};
|
||||
|
||||
#endif
|
||||
+1
-1
@@ -3,7 +3,7 @@ CXXFLAGS = -Wall -Wextra -Werror -std=c++98
|
||||
OBJDIR = obj
|
||||
SOURCES = Main.cpp
|
||||
OBJECTS = $(addprefix $(OBJDIR)/, $(SOURCES:.cpp=.o))
|
||||
NAME = Easyfind
|
||||
NAME = btc
|
||||
|
||||
all: $(NAME)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user