Remove csv.hpp
This commit is contained in:
parent
57b2d75593
commit
7a4ced7a36
@ -1,32 +0,0 @@
|
||||
#ifndef CSV_HPP
|
||||
#define CSV_HPP
|
||||
|
||||
#include <fstream>
|
||||
|
||||
#include "generic.hpp"
|
||||
|
||||
class CSV : public Generic
|
||||
{
|
||||
public:
|
||||
CSV(const std::string&);
|
||||
~CSV();
|
||||
void Write();
|
||||
void Update();
|
||||
void Close();
|
||||
unsigned int Width();
|
||||
std::string GetValue(unsigned int, unsigned int);
|
||||
std::string GetColumnValue(unsigned int, const std::string&);
|
||||
void SetValue(const std::string&, unsigned int, unsigned int);
|
||||
void SetColumnValue(const std::string&, unsigned int, const std::string&);
|
||||
void AddColumnValue(const std::string&, const std::string&);
|
||||
unsigned int ValuesInRow(unsigned int);
|
||||
unsigned int ValuesInColumn(unsigned int);
|
||||
unsigned int ValuesInColumn(const std::string&);
|
||||
private:
|
||||
std::fstream _csv;
|
||||
std::string _temp;
|
||||
|
||||
std::string _GetRow(unsigned int);
|
||||
};
|
||||
|
||||
#endif
|
Reference in New Issue
Block a user