From 33d1503c69579e070bb98afac9a9ee0511e7e528 Mon Sep 17 00:00:00 2001 From: villa Date: Fri, 10 Mar 1995 10:48:33 +0000 Subject: [PATCH] Cazzate git-svn-id: svn://10.65.10.50/trunk@1096 c028cbd2-c16b-5b4b-a496-9718f37d4682 --- cg/cg2103.h | 24 ------------------------ 1 file changed, 24 deletions(-) diff --git a/cg/cg2103.h b/cg/cg2103.h index e13ce3dda..5913d9d70 100755 --- a/cg/cg2103.h +++ b/cg/cg2103.h @@ -129,28 +129,4 @@ public: const TString& tipo() const { return get("S1"); } }; -class TImporto : public TObject -{ - char _sezione; - real _valore; - -public: - char sezione() const { return _sezione; } - const real& valore() const { return _valore; } - - bool is_zero() const { return _valore.is_zero(); } - - const TImporto& operator=(const TImporto& i) { return set(i.sezione(), i.valore()); } - const TImporto& operator=(TToken_string& sv); - const TImporto& operator+=(const TImporto& i); - const TImporto& operator-=(const TImporto& i); - const TImporto& swap_section(); - - const TImporto& set(char s, const real& v); - const TImporto& add_to(TToken_string& s) const; - - TImporto(char s = 'D', const real& v = ZERO) { set(s, v); } - TImporto(const TImporto& i) : _sezione(i._sezione), _valore(i._valore) {} -}; - #endif