removed POINTER_DEFINITIONS

This commit is contained in:
Matej Sekoranja
2011-07-01 13:51:20 +02:00
parent 2ee024ecb8
commit 4dca11e231
2 changed files with 4 additions and 10 deletions

View File

@@ -26,11 +26,11 @@ TEMPLATE_TOP=$(EPICS_BASE)/templates/makeBaseApp/top
# EPICS_BASE usually appears last so other apps can override stuff:
#PVDATA=/Users/msekoranja/tmp/pvDataCPP
#EPICS_BASE=/opt/epics/base
PVDATA=/Users/msekoranja/tmp/pvDataCPP
EPICS_BASE=/opt/epics/base
PVDATA=/home/mrk/hg/pvDataCPP
EPICS_BASE=/home/install/epics/base
#PVDATA=/home/mrk/hg/pvDataCPP
#EPICS_BASE=/home/install/epics/base
# Set RULES here if you want to take build rules from somewhere
# other than EPICS_BASE:

View File

@@ -30,12 +30,6 @@ namespace epics { namespace pvAccess {
class Channel;
class ChannelProvider;
#define POINTER_DEFINITIONS(clazz) \
typedef std::tr1::shared_ptr<clazz> shared_pointer; \
typedef std::tr1::shared_ptr<const clazz> const_shared_pointer; \
typedef std::tr1::weak_ptr<clazz> weak_pointer; \
typedef std::tr1::weak_ptr<const clazz> const_weak_pointer;
/**
* Base interface for all channel requests.