Change dtmmdb class from tuple to mmdb_tuple

This commit is contained in:
Peter Howkins
2018-03-21 01:03:31 +00:00
parent abd209a83c
commit b1c3729e88
13 changed files with 42 additions and 42 deletions

View File

@@ -67,10 +67,10 @@
// The doc class
/*************************************/
class doc : public tuple
class doc : public mmdb_tuple
{
public:
doc() : tuple(NUM_DOC_FIELDS, DOC_CODE) {};
doc() : mmdb_tuple(NUM_DOC_FIELDS, DOC_CODE) {};
virtual ~doc() {};
MMDB_SIGNATURES(doc);