#include <cassert>
#include <boost/foreach.hpp>
+#include <boost/algorithm/string/case_conv.hpp>
#include <algorithm>
#include <osg/Array>
}
type = node->getStringValue("type");
+ boost::to_lower(type);
SGPropertyNode* enableNode = node->getChild("enable");
if (enableNode) {
enable.reset(sgReadCondition(fgGetNode("/"), enableNode));
}
string type = FGPositioned::nameForType(pos->type());
+ //boost::to_lower(type);
if (!anyRuleForType(type)) {
return; // not diplayed at all, we're done
}