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

@@ -63,11 +63,11 @@
// The toc class
/*************************************/
class toc : public tuple
class toc : public mmdb_tuple
{
public:
toc() : tuple(NUM_TOC_FIELDS, TOC_CODE) {};
toc() : mmdb_tuple(NUM_TOC_FIELDS, TOC_CODE) {};
virtual ~toc() {};
MMDB_SIGNATURES(toc);