4
0
mirror of https://github.com/QuasarApp/QuasarAppLib.git synced 2025-05-03 04:59:44 +00:00

fix windows shared build

n# Please enter the commit message for your changes. Lines starting
This commit is contained in:
Andrei Yankovich 2021-04-01 08:25:12 -07:00
parent 80661ff685
commit 681dab9741

@ -9,6 +9,8 @@
#define HELPDATA_H #define HELPDATA_H
#include <QMap> #include <QMap>
#include "quasarapp_global.h"
namespace QuasarAppUtils{ namespace QuasarAppUtils{
namespace Help { namespace Help {
@ -29,25 +31,25 @@ int width();
* @param key - option name * @param key - option name
* @param value - description of option * @param value - description of option
*/ */
void print(const QString& key, const QString& value, int keyLength); void QUASARAPPSHARED_EXPORT print(const QString& key, const QString& value, int keyLength);
/** /**
* @brief print = help Charter * @brief print = help Charter
* @param charter - charter of help * @param charter - charter of help
*/ */
void print(const Options& charter); void QUASARAPPSHARED_EXPORT print(const Options& charter);
/** /**
* @brief print - all help * @brief print - all help
* @param help - help for printing * @param help - help for printing
*/ */
void print(const Charters& help); void QUASARAPPSHARED_EXPORT print(const Charters& help);
/** /**
* @brief setLineLength - sets new length of helps line * @brief setLineLength - sets new length of helps line
* @param newLength - new size * @param newLength - new size
*/ */
void setLineLength(int newLength); void QUASARAPPSHARED_EXPORT setLineLength(int newLength);
} }
} }