assoc.h Aggiunti due const key() r obj()

codeb.c   Corretta fatal_box
isam.cpp  Aggiunto NOT_OPEN al metodo TBaseisamfile::items()


git-svn-id: svn://10.65.10.50/trunk@2233 c028cbd2-c16b-5b4b-a496-9718f37d4682
This commit is contained in:
guy 1995-12-04 11:06:12 +00:00
parent 0aeeb04dad
commit e029749e8b
3 changed files with 1068 additions and 1067 deletions

View File

@ -26,10 +26,10 @@ class THash_object : public TObject
public:
// @cmember Ritorna la chiave di ordinamento
TString& key()
const TString& key() const
{ return _key; }
// @cmember Ritorna l'oggetto
TObject& obj()
TObject& obj() const
{ return *_obj; }
// @cmember Costruttore (inizializza la chiave)

File diff suppressed because it is too large Load Diff

View File

@ -600,7 +600,8 @@ int TBaseisamfile::delhr(const TRectype& rec, TDate& atdate)
}
long TBaseisamfile::items() const
{
{
NOT_OPEN();
return(DB_reccount(filehnd()->fhnd));
}