easyssl 0.51.8d8e9a5
EasySSL is base back end library for your c++ Qt projects.
easyssl.cpp
Go to the documentation of this file.
1//#
2//# Copyright (C) 2021-2025 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 "easyssl.h"
9
10namespace EasySSL {
11
12bool init() {
13 return true;
14}
15
16QString version() {
17 return EASYSSL_VERSION;
18}
19
20
21}
#define EASYSSL_VERSION
Definition global.h:13
bool init()
init main initialize method of The easyssl library
Definition easyssl.cpp:12
QString version()
version This method return string value of a library version
Definition easyssl.cpp:16