Changeset 2513
- Timestamp:
- Jul 11, 2011, 4:08:37 AM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/yat/utility/ColumnStream.cc
r2512 r2513 31 31 32 32 ColumnStream::ColumnStream(std::ostream& os, size_t columns) 33 : activated_(0), os_(os)33 : activated_(0), margins_(columns), os_(os), width_(columns, 8) 34 34 { 35 margins_=std::vector<size_t>(columns);36 35 buffer_.reserve(columns); 37 36 while (buffer_.size()<columns) 38 37 buffer_.push_back(new std::stringstream); 39 width_=std::vector<size_t>(columns, 8);40 38 } 41 39
Note: See TracChangeset
for help on using the changeset viewer.