dell'estratto conto. Creata la relativa maschera. git-svn-id: svn://10.65.10.50/trunk@2242 c028cbd2-c16b-5b4b-a496-9718f37d4682
47 lines
943 B
C++
Executable File
47 lines
943 B
C++
Executable File
|
|
#ifndef __SC2102_H
|
|
#define __SC2102_H
|
|
|
|
#include <stdarg.h>
|
|
|
|
#include <utility.h>
|
|
#include <array.h>
|
|
#include <strings.h>
|
|
#include <real.h>
|
|
#include <isam.h>
|
|
|
|
|
|
///////////////////////////////////////////////////////////
|
|
// Totalizzatore
|
|
///////////////////////////////////////////////////////////
|
|
|
|
class TTotalizer : public TAssoc_array
|
|
{
|
|
public:
|
|
void add(const TImporto& imp, const TString& val);
|
|
|
|
TTotalizer() { }
|
|
virtual ~TTotalizer() { }
|
|
};
|
|
|
|
|
|
///////////////////////////////////////////////////////////
|
|
// TFilearray
|
|
///////////////////////////////////////////////////////////
|
|
|
|
class TFile_array
|
|
{
|
|
TArray _file;
|
|
|
|
public:
|
|
void open(int num, ...);
|
|
void close();
|
|
TLocalisamfile& file(int num) const { return (TLocalisamfile&)_file[num]; }
|
|
TLocalisamfile& operator[](int num) const { return file(num); }
|
|
|
|
TFile_array() {}
|
|
virtual ~TFile_array() {}
|
|
};
|
|
|
|
#endif // __SC2102_H
|