Ignore:
Timestamp:
02/27/18 17:12:25 (6 years ago)
Author:
Maciej Komosinski
Message:

Renamed ParamInterface::save() -> saveMultiLine()

File:
1 edited

Legend:

Unmodified
Added
Removed
  • cpp/frams/_demos/loader_test_param.cpp

    r520 r745  
    5151        { "notchanged", 0, PARAM_READONLY, "Read only field", "d", FIELD(notchanged), }, // neither load() nor setDefault() can change this field
    5252        { "notloaded", 0, PARAM_DONTLOAD, "Non-loadable field", "d", FIELD(notloaded), }, // load() does not change this field
    53         { "notsaved", 0, PARAM_DONTSAVE, "Non-saveable field", "d", FIELD(notsaved), }, // save() skips this field
     53        { "notsaved", 0, PARAM_DONTSAVE, "Non-saveable field", "d", FIELD(notsaved), }, // saveSingle/MultiLine() skips this field
    5454        { 0, 0, 0, },
    5555};
     
    102102                        fprintf(stderr, "type of 'x2' is: %s\n", data.x2.typeDescription().c_str());
    103103                        fprintf(stderr, "-----\n\n");
    104                         param.save(&virt_stdout);
     104                        param.saveMultiLine(&virt_stdout);
    105105                        break;
    106106
Note: See TracChangeset for help on using the changeset viewer.