fixed missing dllimport/dllexport on new code

This commit is contained in:
Matej Sekoranja
2014-06-11 11:56:04 +02:00
parent 45c657ce79
commit 6ec207141f
5 changed files with 9 additions and 16 deletions
+2
View File
@@ -8,6 +8,8 @@
* @author mrk
*/
#define epicsExportSharedSymbols
#include <pv/monitorPlugin.h>
namespace epics { namespace pvData {
+2 -2
View File
@@ -48,7 +48,7 @@ typedef std::tr1::shared_ptr<MonitorPluginManager> MonitorPluginManagerPtr;
* A monitor is assumed to be associated with a field of a top level
* structure.
*/
class MonitorPlugin
class epicsShareClass MonitorPlugin
{
public:
virtual ~MonitorPlugin(){}
@@ -103,7 +103,7 @@ public:
/** A class that creates a plugin.
* Normlly a plugin is created for a single client.
*/
class MonitorPluginCreator
class epicsShareClass MonitorPluginCreator
{
public:
virtual ~MonitorPluginCreator() {}