30 #include "../kernel/WProjectFile.h"
32 #include "WProjectFileIO.h"
36 m_applyOrder( POST_MODULES )
84 std::string prefix,
unsigned int index, std::string indexPrefix )
89 output << indent <<
"// Property Group: " << props->getName() << std::endl;
95 if( ( *iter )->getPurpose () == PV_PURPOSE_INFORMATION )
99 if( ( *iter )->getType() != PV_GROUP )
101 output << indent +
" " <<
"PROPERTY:(" << indexPrefix << index <<
"," << prefix + ( *iter )->getName() <<
")="
102 << ( *iter )->getAsString() << std::endl;
109 printProperties( output, ( *iter )->toPropGroup(), indent +
" ", ( *iter )->getName() +
"/", index, indexPrefix );
113 printProperties( output, ( *iter )->toPropGroup(), indent +
" ", prefix + ( *iter )->getName() +
"/", index, indexPrefix );
118 output << indent <<
"// Property Group END: " << props->getName() << std::endl;