Changeset 745 for cpp/frams/_demos/loader_test_param.cpp
- Timestamp:
- 02/27/18 17:12:25 (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
cpp/frams/_demos/loader_test_param.cpp
r520 r745 51 51 { "notchanged", 0, PARAM_READONLY, "Read only field", "d", FIELD(notchanged), }, // neither load() nor setDefault() can change this field 52 52 { "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 field53 { "notsaved", 0, PARAM_DONTSAVE, "Non-saveable field", "d", FIELD(notsaved), }, // saveSingle/MultiLine() skips this field 54 54 { 0, 0, 0, }, 55 55 }; … … 102 102 fprintf(stderr, "type of 'x2' is: %s\n", data.x2.typeDescription().c_str()); 103 103 fprintf(stderr, "-----\n\n"); 104 param.save (&virt_stdout);104 param.saveMultiLine(&virt_stdout); 105 105 break; 106 106
Note: See TracChangeset
for help on using the changeset viewer.