2010-01-05 14:32:48 +00:00
|
|
|
#ifndef __LV4100_H__
|
|
|
|
#define __LV4100_H__
|
|
|
|
|
|
|
|
#ifndef __TEXTSET_H__
|
|
|
|
#include <textset.h>
|
|
|
|
#endif
|
2010-01-03 20:29:32 +00:00
|
|
|
|
|
|
|
class TImporta_cogeco_recset : public TCSV_recordset
|
|
|
|
{
|
2010-01-05 14:32:48 +00:00
|
|
|
protected:
|
2010-01-03 20:29:32 +00:00
|
|
|
|
|
|
|
public:
|
2010-01-05 14:32:48 +00:00
|
|
|
real get_real(int idx) const;
|
2010-01-07 16:52:33 +00:00
|
|
|
bool get_bill(TBill& bill, int idx_gruppo) const;
|
|
|
|
TDate get_date(int idx) const;
|
2010-01-03 20:29:32 +00:00
|
|
|
TImporta_cogeco_recset(const char* query = "") : TCSV_recordset(TString("CSV(\";)\n") << query) {}
|
|
|
|
};
|
2010-01-05 14:32:48 +00:00
|
|
|
|
|
|
|
#endif
|