Resi virtual alcuni metodi.

git-svn-id: svn://10.65.10.50/trunk@3478 c028cbd2-c16b-5b4b-a496-9718f37d4682
This commit is contained in:
angelo 1996-09-02 14:13:36 +00:00
parent 96485b6fc6
commit 1ff4058fe3
2 changed files with 5 additions and 5 deletions

View File

@ -408,7 +408,7 @@ TVariable_rectype & TVariable_rectype::operator =(const TVariable_rectype & rec)
}
// Certified 99%
TVariable_rectype & TVariable_rectype::operator =(const TRectype & rec)
TRectype & TVariable_rectype::operator =(const TRectype & rec)
{
TRectype::operator =(rec);
@ -417,7 +417,7 @@ TVariable_rectype & TVariable_rectype::operator =(const TRectype & rec)
}
// Certified 99%
TVariable_rectype & TVariable_rectype::operator =(const char* rec)
TRectype & TVariable_rectype::operator =(const char* rec)
{
TRectype::operator =(rec);
_virtual_fields.for_each(zero_virtual_fields);

View File

@ -66,11 +66,11 @@ public:
virtual void zero(char c = '\0');
// @cmember Assegnazione tra TVariable_rectype e TRectype
TVariable_rectype& operator =(const TRectype& rec);
virtual TRectype& operator =(const TRectype& rec);
// @cmember Assegnazione tra TVariable_rectype
TVariable_rectype& operator =(const TVariable_rectype& rec);
virtual TVariable_rectype& operator =(const TVariable_rectype& rec);
// @cmember Assegnazione tra TRectype const char *
TVariable_rectype& operator =(const char* rec);
virtual TRectype& operator =(const char* rec);
void set_memo_fld(const char * fieldname);