diff options
author | Chun-wei Fan <fanchunwei@src.gnome.org> | 2020-03-05 12:36:30 +0800 |
---|---|---|
committer | Chun-wei Fan <fanchunwei@src.gnome.org> | 2020-03-05 16:13:30 +0800 |
commit | 7fb2c6d272a49051bdd2c0d613a1066340a44536 (patch) | |
tree | 3496c544a39dc8c557178113ad8871f4456bdc64 /glib/glibmm/quark.h | |
parent | 4c2b07e68fbacbb09dcf91b44ee8cd1312ae9f21 (diff) | |
download | glibmm-7fb2c6d272a49051bdd2c0d613a1066340a44536.tar.gz |
glib/glibmm/*.h: Mark classes and methods with GLIBMM_API
This prepares the code to use __declspec(dllexport) to export all symbols, so
that we can eventually bid farewell to gendf.exe
Diffstat (limited to 'glib/glibmm/quark.h')
-rw-r--r-- | glib/glibmm/quark.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/glib/glibmm/quark.h b/glib/glibmm/quark.h index b860e741..bf839596 100644 --- a/glib/glibmm/quark.h +++ b/glib/glibmm/quark.h @@ -39,7 +39,7 @@ namespace Glib * void set_data (const Quark&, void * data); * void* get_data (const QueryQuark&); */ -class QueryQuark +class GLIBMM_API QueryQuark { public: QueryQuark(const GQuark& q); @@ -56,7 +56,7 @@ private: GQuark quark_; }; -class Quark : public QueryQuark +class GLIBMM_API Quark : public QueryQuark { public: Quark(const ustring& s); |