all pvData interfaces and implementration stubs now defined

Most methods are not implemented and throw an exception
This commit is contained in:
Marty Kraimer
2010-09-24 09:52:08 -04:00
parent 2c6a99a6cb
commit dd6ecf9bec
22 changed files with 524 additions and 103 deletions

View File

@@ -76,5 +76,10 @@ namespace epics { namespace pvData {
void PVArray::toString(StringPtr buf) const {toString(buf,0);}
void PVArray::toString(StringPtr buf, int indentLevel) const
{
throw std::logic_error(notImplemented);
}
}}
#endif /* ABSTRACTPVARRAY_H */