Except for serialization all pv classes are implemented

This commit is contained in:
Marty Kraimer
2010-10-26 09:11:38 -04:00
parent 59eeadcd10
commit d2a4a6da8f
9 changed files with 238 additions and 173 deletions
+3 -3
View File
@@ -12,7 +12,7 @@ namespace epics { namespace pvData {
class PVArrayPvt {
public:
PVArrayPvt() : length(0),capacity(0),capacityMutable(epicsTrue)
PVArrayPvt() : length(0),capacity(0),capacityMutable(true)
{}
int length;
int capacity;
@@ -54,7 +54,7 @@ namespace epics { namespace pvData {
bool PVArray::isCapacityMutable()
{
if(PVField::isImmutable()) {
return epicsFalse;
return false;
}
return pImpl->capacityMutable;
}
@@ -75,7 +75,7 @@ namespace epics { namespace pvData {
PVField::message(fieldImmutable,errorMessage);
return;
}
if(pImpl->capacityMutable==epicsFalse) {
if(pImpl->capacityMutable==false) {
PVField::message(capacityImmutable,errorMessage);
return;
}