Changes between Version 2 and Version 3 of Support/Tutorials/LoadingProgress
- Timestamp:
- 07/11/07 18:23:13 (6 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Support/Tutorials/LoadingProgress
v2 v3 15 15 2. create an instance of the custom stream buffer class passing it the name of the file that must be opened. This operation will open the file much like the standard `std::basic_filebuf<>` template does. 16 16 3. create a std::istream object based on the custom stream buffer. 17 4. take the ReaderWriter object you found at step 1 and call its `readNode()` method passing it the stream object created at the previous step. This will read the file, and the `uflow()` method in your custom streambuffer will display progress information as bytes are read.17 4. take the !ReaderWriter object you found at step 1 and call its `readNode()` method passing it the stream object created at the previous step. This will read the file, and the `uflow()` method in your custom streambuffer will display progress information as bytes are read. 18 18 19 19 == Source Code ==
