Files
SilentDragonXLite/src/DataStore/DataStore.cpp
2023-02-20 15:39:41 +01:00

19 lines
382 B
C++

// Copyright 2019-2023 The Hush developers
// Released under the GPLv3
#include "DataStore.h"
SietchDataStore* DataStore::getSietchDataStore()
{
return SietchDataStore::getInstance();
}
ChatDataStore* DataStore::getChatDataStore()
{
return ChatDataStore::getInstance();
}
ContactDataStore* DataStore::getContactDataStore()
{
return ContactDataStore::getInstance();
}