#include <dx9_wrap.h>
Public Member Functions | |
| ErrorList () | |
| Construct empty error list. | |
| ErrorList (char *long_str) | |
| Construct error list by splitting long string containing all the errors separated by CR/LF pairs into individual error records and append them to the new ErrorList object. | |
| ~ErrorList () | |
| Destroy error list and free all consumed resources such as memory. | |
| void | add_error (std::string err_text) |
| Add next error report record. | |
| int | count () const |
| const std::string | operator[] (int index) const |
|
|
Construct empty error list. Entries are then appended by calling the add_error() method multiple times before the object is thrown as exception.
|
|
|
Construct error list by splitting long string containing all the errors separated by CR/LF pairs into individual error records and append them to the new ErrorList object.
|
|
|
Destroy error list and free all consumed resources such as memory.
|
|
|
Add next error report record. Will be appended to the list. |
|
|
|
|
|
|
1.3.6