mirror of
https://github.com/QuasarApp/Heart.git
synced 2025-04-28 02:34:41 +00:00
25 lines
438 B
C++
25 lines
438 B
C++
/*
|
|
* Copyright (C) 2018-2022 QuasarApp.
|
|
* Distributed under the lgplv3 software license, see the accompanying
|
|
* Everyone is permitted to copy and distribute verbatim copies
|
|
* of this license document, but changing it is not allowed.
|
|
*/
|
|
|
|
#include "heart.h"
|
|
|
|
#include <QDataStream>
|
|
#include <QVariantMap>
|
|
|
|
namespace QH {
|
|
|
|
bool init() {
|
|
initResources();
|
|
return true;
|
|
}
|
|
|
|
QString heartLibVersion() {
|
|
return HEART_VERSION;
|
|
}
|
|
|
|
}
|