Ignore:
Timestamp:
1999-07-14T11:24:06+12:00 (25 years ago)
Author:
rjmcnab
Message:

Added functionality to modify a gdbm database.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/gsdl/src/recpt/infodbclass.h

    r368 r375  
    101101  // returns true on success
    102102  bool setinfo (const text_t &key, const infodbclass &info);
     103
     104  void deletekey (const text_t &key);
     105
     106  // getfirstkey and getnextkey are used for traversing the database
     107  // no insertions or deletions should be carried out while traversing
     108  // the database. when there are no keys left to visit in the database
     109  // an empty string is returned.
     110  text_t getfirstkey ();
     111  text_t getnextkey (const text_t &key);
    103112 
    104113protected:
Note: See TracChangeset for help on using the changeset viewer.