mirror of
https://github.com/mudita/MuditaOS.git
synced 2026-07-21 05:24:22 -04:00
25 lines
453 B
C++
25 lines
453 B
C++
// Copyright (c) 2017-2020, Mudita Sp. z.o.o. All rights reserved.
|
|
// For licensing, see https://github.com/mudita/MuditaOS/LICENSE.md
|
|
|
|
#pragma once
|
|
|
|
#include "Database/Database.hpp"
|
|
#include "../Tables/CalllogTable.hpp"
|
|
|
|
class CalllogDB : public Database
|
|
{
|
|
public:
|
|
CalllogDB();
|
|
virtual ~CalllogDB();
|
|
|
|
CalllogTable calls;
|
|
|
|
static const char *GetDBName()
|
|
{
|
|
return dbName;
|
|
}
|
|
|
|
private:
|
|
static const char *dbName;
|
|
};
|