added methods to show cache; tests moved to pvaClientTestCPP; doxygen changes

This commit is contained in:
Marty Kraimer
2015-06-26 07:05:41 -04:00
parent b1594e6b78
commit 87d5ca03f7
32 changed files with 605 additions and 1655 deletions

View File

@@ -169,7 +169,7 @@ Status PvaClientGet::waitConnect()
return Status::Ok;
}
connectState = connectIdle;
return Status(Status::STATUSTYPE_ERROR,channelGetConnectStatus.getMessage());
return channelGetConnectStatus;
}
void PvaClientGet::get()
@@ -209,7 +209,7 @@ Status PvaClientGet::waitGet()
if(channelGetStatus.isOK()) {
return Status::Ok;
}
return Status(Status::STATUSTYPE_ERROR,channelGetStatus.getMessage());
return channelGetStatus;
}
PvaClientGetDataPtr PvaClientGet::getData()
{