You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
class OutputMap
{
private:
// prefix and postfix to be used to construct ExtraNameWrapper in add_extra
string pre = "";
string post = "";
(in public)
void set_pre_and_post(string prefix, string postfix) {
// Must be called before add_extra
pre = prefix;
post = postfix;
}
const void add_extra(const OutputDataWrapper &output) {
add_output(ExtraNameWrapper(output, pre, post));
}
sDNA/sdna_vs2008/sdna_output_utils.h
Added:
(in public)
sDNA/sdna_vs2008/calc_output_code.cpp
Removed:
Replaced:
OUTPUT
withoutput_map.add_extra
Also added a call to
output_map.set_pre_and_post(output_name_prefix,output_name_postfix)
of course.The text was updated successfully, but these errors were encountered: