Skip to content
Snippets Groups Projects
Commit 25580c62 authored by ziemke's avatar ziemke
Browse files

Task #2926: Added cout statements to check value type for and after conversion

parent 4f765ad1
No related branches found
No related tags found
No related merge requests found
......@@ -621,8 +621,9 @@ bool WinCCManager::set_datapoint_validity(const std::string &name, bool validity
std::cout << "Garbage valueVarType is " << value_VariableType << '\n';
if(DpIdentificationResult::DpIdentOK == dir) {
std::cout << "IdResult is OK\n";
VariableType dpId_VariableType = DpElement::getVariableType(dpId_ElementType);
VariableType value_VariableType = value->isAUncached();
VariableType value_VariableType = value->isA();
}
else {
......@@ -641,7 +642,9 @@ bool WinCCManager::set_datapoint_validity(const std::string &name, bool validity
// TODO: Fix this...
VariablePtr converted_var = NULL;
//Variable::ConvertResult cr = convert(value, value->getValue(), converted_var);
std::cout << "value isA before: " << value->isA() << '\n';
Variable::ConvertResult cr = value->convert(dpId_VariableType, converted_var);
std::cout << "value isA after: " << value->isA() << '\n';
// if conversion succeeds, send the converted var
if(Variable::ConvertResult::OK == cr) {
......
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