diff --git interfaces/viewerinterface.h interfaces/viewerinterface.h
index c3de2e9..1418c60 100644
|
|
namespace Okular { |
23 | 23 | * This interface can be used to control some more or less advanced features of a document |
24 | 24 | * viewer. |
25 | 25 | */ |
26 | | class ViewerInterface |
| 26 | class OKULAR_EXPORT ViewerInterface |
27 | 27 | { |
28 | 28 | public: |
29 | 29 | virtual ~ViewerInterface() {} |
diff --git kdocumentviewer.h kdocumentviewer.h
index 2f77610..360ed42 100644
|
|
|
10 | 10 | #ifndef _KDOCUMENTVIEWER_H_ |
11 | 11 | #define _KDOCUMENTVIEWER_H_ |
12 | 12 | |
| 13 | #include "core/okular_export.h" |
| 14 | |
13 | 15 | #include <QtCore/QStringList> |
14 | 16 | |
15 | 17 | class KUrl; |
… |
… |
class KUrl; |
19 | 21 | * |
20 | 22 | * This interface describe briefly the basic functions of a document viewer. |
21 | 23 | */ |
22 | | class KDocumentViewer |
| 24 | class OKULAR_EXPORT KDocumentViewer |
23 | 25 | { |
24 | 26 | public: |
25 | 27 | virtual ~KDocumentViewer() {} |