2018-08-11 18:09:56 +03:00
|
|
|
/*
|
2024-12-30 22:39:49 +01:00
|
|
|
* Copyright (C) 2018-2025 QuasarApp.
|
2018-08-11 18:09:56 +03:00
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef QUASARAAPP_H
|
|
|
|
#define QUASARAAPP_H
|
|
|
|
|
2018-09-29 15:56:04 +03:00
|
|
|
#include "params.h"
|
|
|
|
#include "locales.h"
|
|
|
|
#include "settings.h"
|
2024-01-21 10:42:50 +01:00
|
|
|
#include "qaplatformutils.h"
|
2018-08-11 18:09:56 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief The QuasaraAppUtils class
|
2021-04-07 13:24:30 +03:00
|
|
|
* This lib include base functions for the all applications of QuasarApp group.
|
|
|
|
* All methods of the Quasar AppUtils is static.
|
2018-08-11 18:09:56 +03:00
|
|
|
*/
|
2018-09-29 15:56:04 +03:00
|
|
|
namespace QuasarAppUtils{
|
2018-08-11 18:09:56 +03:00
|
|
|
|
2018-09-29 15:56:04 +03:00
|
|
|
} ;
|
2018-08-11 18:09:56 +03:00
|
|
|
|
|
|
|
#endif // QUASARAAPP_H
|