Changeset 1357 in SHVCSoftware for branches/SHM-dev
- Timestamp:
- 22 Jul 2015, 04:05:35 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/SHM-dev/source/App/TAppEncoder/TAppEncCfg.cpp
r1356 r1357 527 527 values.values.clear(); 528 528 string str; 529 in >> str; 529 while (!in.eof()) 530 { 531 string tmp; in >> tmp; str+=" " + tmp; 532 } 530 533 if (!str.empty()) 531 534 { … … 576 579 values.values.clear(); 577 580 string str; 578 in >> str; 581 while (!in.eof()) 582 { 583 string tmp; in >> tmp; str+=" " + tmp; 584 } 579 585 if (!str.empty()) 580 586 { … … 625 631 values.values.clear(); 626 632 string str; 627 in >> str; 633 while (!in.eof()) 634 { 635 string tmp; in >> tmp; str+=" " + tmp; 636 } 628 637 if (!str.empty()) 629 638 {
Note: See TracChangeset for help on using the changeset viewer.