aBase->string(ExchangePlugin_ExportFeature::XAO_FILE_PATH_ID())->value();
theDumper << "exportToXAO(" << aDocName << ", '" << tmpXAOFile << "'" ;
std::string theAuthor = aBase->string(ExchangePlugin_ExportFeature::XAO_AUTHOR_ID())->value();
- if (not theAuthor.empty())
+ if (! theAuthor.empty())
theDumper << ", '" << theAuthor << "'";
std::string theGeometryName =
aBase->string(ExchangePlugin_ExportFeature::XAO_GEOMETRY_NAME_ID())->value();
- if (not theGeometryName.empty())
+ if (! theGeometryName.empty())
theDumper << ", '" << theGeometryName << "'";
theDumper << ")" << std::endl;
}
aBase->selectionList(ExchangePlugin_ExportFeature::SELECTION_LIST_ID()) ;
std::string theFileFormat =
aBase->string(ExchangePlugin_ExportFeature::FILE_FORMAT_ID())->value();
- if (not theFileFormat.empty())
+ if (! theFileFormat.empty())
theDumper << ", '" << theFileFormat << "'";
theDumper << ")" << std::endl;
}
// geometry name
std::string aGeometryName = string(ExchangePlugin_ExportFeature::XAO_GEOMETRY_NAME_ID())->value();
- if (aGeometryName.empty() and aBodyCount == 1){
+ if (aGeometryName.empty() && aBodyCount == 1) {
// get the name from the first result
ResultBodyPtr aResultBody = *aResults.begin();
aGeometryName = aResultBody->data()->name();