fixed possible SEGFAULT in ceateRequest; new stream operator for Field and PVField

This commit is contained in:
Marty Kraimer
2015-02-11 07:26:04 -05:00
parent a277a4fdd5
commit 6cb95c5cfc
10 changed files with 161 additions and 22 deletions
+8
View File
@@ -1565,6 +1565,14 @@ private:
epicsShareExtern PVDataCreatePtr getPVDataCreate();
}}
/**
* stream support for pvField
*/
namespace std{
std::ostream& operator<<(std::ostream& o, const epics::pvData::PVField *ptr);
}
#endif /* PVDATA_H */
/** @page Overview Documentation
+8
View File
@@ -1220,4 +1220,12 @@ struct StructureArrayHashFunction {
};
}}
/**
* stream support for Field
*/
namespace std{
std::ostream& operator<<(std::ostream& o, const epics::pvData::Field *ptr);
}
#endif /* PVINTROSPECT_H */