Skip to content
Snippets Groups Projects
Commit 04255a6c authored by Andrea Michelotti's avatar Andrea Michelotti
Browse files

epics compat

parent 23cfd686
No related branches found
No related tags found
No related merge requests found
......@@ -37,8 +37,12 @@
namespace epics{
namespace pvData{
class Structure;
typedef ChaosSharedPtr<const Structure> StructureConstPtr;
#if __cplusplus >= 201103L
typedef std::shared_ptr<const Structure> StructureConstPtr;
#else
typedef std::tr1::shared_ptr<const Structure> StructureConstPtr;
#endif
}
}
#endif
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment