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

@@ -62,11 +62,11 @@
// The graphic class
/*************************************/
class graphic : public tuple
class graphic : public mmdb_tuple
{
public:
graphic() : tuple(NUM_GRAPHIC_FIELDS, GRAPHIC_CODE) {};
graphic() : mmdb_tuple(NUM_GRAPHIC_FIELDS, GRAPHIC_CODE) {};
virtual ~graphic() {};
MMDB_SIGNATURES(graphic);