From 681dab974186d4d499ad68b487ad7e6856b07505 Mon Sep 17 00:00:00 2001
From: EndrII <endriimail@gmail.com>
Date: Thu, 1 Apr 2021 08:25:12 -0700
Subject: [PATCH] fix windows shared build n# Please enter the commit message
 for your changes. Lines starting

---
 helpdata.h | 10 ++++++----
 1 file changed, 6 insertions(+), 4 deletions(-)

diff --git a/helpdata.h b/helpdata.h
index a5c1f97..71c7287 100644
--- a/helpdata.h
+++ b/helpdata.h
@@ -9,6 +9,8 @@
 #define HELPDATA_H
 
 #include <QMap>
+#include "quasarapp_global.h"
+
 namespace QuasarAppUtils{
 
 namespace Help {
@@ -29,25 +31,25 @@ int width();
  * @param key - option name
  * @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
  * @param charter - charter of help
  */
-void print(const Options& charter);
+void QUASARAPPSHARED_EXPORT print(const Options& charter);
 
 /**
  * @brief print - all help
  * @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
  * @param newLength - new size
  */
-void setLineLength(int newLength);
+void QUASARAPPSHARED_EXPORT setLineLength(int newLength);
 }
 }