SecretService 0.13.2d47dfe
SecretService is base back end library for your c++ Qt projects.
QASecret.cpp
Go to the documentation of this file.
1//#
2//# Copyright (C) 2024-2024 QuasarApp.
3//# Distributed under the GPLv3 software license, see the accompanying
4//# Everyone is permitted to copy and distribute verbatim copies
5//# of this license document, but changing it is not allowed.
6//#
7
8#include "QASecret.h"
9
10#include <QASecret/keystorage.h>
11#include <SecretDB.h>
12
13namespace QASecret {
14
15bool init() {
18
19 KeyStorage::initService(std::make_unique<KeyStorage>(DBSecret::database()));
20
21 return true;
22}
23
24QString version() {
26}
27
28
29}
void initSecretServiceResources()
Definition QASecret.h:11
#define SECRETSERVICE_VERSION
Definition global.h:13
bool init()
init main initialize method of The YourTimeDeliviry library
Definition SecretDB.cpp:15
QSharedPointer< IDataBase > database()
Definition SecretDB.cpp:21
QString version()
version This method return string value of a library version
Definition QASecret.cpp:24
bool init()
init main initialize method of The SecretService library
Definition QASecret.cpp:15