Skip to content
Snippets Groups Projects
Commit c0dc1901 authored by marco's avatar marco
Browse files

corrected dllexport for info modules

git-svn-id: https://dng.biozentrum.unibas.ch/svn/openstructure/trunk@2706 5a81b35b-ba03-0410-adc8-b2c5c5119f08
parent 3bb10a61
No related branches found
No related tags found
No related merge requests found
......@@ -51,7 +51,7 @@ DLLEXPORT InfoHandle LoadInfo(const String& file);
to an underlying info class, which is shared among copies of InfoHandles
unless the Copy() method is used.
*/
class DLLEXPORT InfoHandle {
class DLLEXPORT_OST_INFO InfoHandle {
friend InfoHandle CreateInfo();
friend InfoHandle CreateInfo(const String& text);
friend InfoHandle LoadInfo(const String&);
......
......@@ -25,12 +25,12 @@
#include <map>
#include <ost/base.hh>
#include "module_config.hh"
#include "info_group.hh"
namespace ost { namespace info {
class DLLEXPORT InfoSet {
class DLLEXPORT_OST_INFO InfoSet {
public:
InfoSet(const String& name="");
......
......@@ -31,7 +31,7 @@
namespace ost { namespace info {
class DLLEXPORT VerboseInfoVisitor: public InfoVisitor {
class DLLEXPORT_OST_INFO VerboseInfoVisitor: public InfoVisitor {
public:
virtual void VisitItem(InfoItem& item);
virtual bool VisitGroup(InfoGroup& group);
......
......@@ -28,11 +28,12 @@
#define OST_INFO_VISITOR_HH
#include <ost/base.hh>
#include "module_config.hh"
#include "info_fw.hh"
namespace ost { namespace info {
class DLLEXPORT InfoVisitor {
class DLLEXPORT_OST_INFO InfoVisitor {
public:
virtual ~InfoVisitor();
......@@ -54,7 +55,7 @@ public:
virtual void VisitGroupFinish(InfoGroup& group);
};
class DLLEXPORT InfoConstVisitor {
class DLLEXPORT_OST_INFO InfoConstVisitor {
public:
virtual ~InfoConstVisitor();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment