Ignore:
Timestamp:
2008-05-17T16:00:00+12:00 (16 years ago)
Author:
mdewsnip
Message:

(Adding new DB support) Changed lots of "gdbm"s to "db"s, in preparation for adding new DB types.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • gsdl/trunk/src/colservr/browsefilter.h

    r15430 r15558  
    3333#include "comtypes.h"
    3434#include "filter.h"
    35 #include "gdbmclass.h"
     35#include "dbclass.h"
    3636
    3737
    3838class browsefilterclass : public filterclass {
    3939protected:
    40   text_t gdbm_filename;
     40  text_t db_filename;
    4141  text_t indexstem;
    42   gdbmclass *gdbmptr;
     42  dbclass *db_ptr;
    4343
    4444public:
     
    5050  virtual void configure (const text_t &key, const text_tarray &cfgline);
    5151
    52   // the gdbmptr remains the responsability of the calling code and
     52  // the db ptr remains the responsability of the calling code and
    5353  // should be destroyed after this browsefilter is destroyed
    54   void set_gdbmptr (gdbmclass *thegdbmptr) {gdbmptr = thegdbmptr;}
     54  void set_db_ptr (dbclass *db_ptr_arg) { db_ptr = db_ptr_arg; }
    5555
    5656  bool init (ostream &logout);
Note: See TracChangeset for help on using the changeset viewer.