![]() |
![]() |
|
Index
Source Files
Annotated Class List
Alphabetical Class List
Class Hierarchy
Graphical Class Hierarchy
|
||
![]() |
![]() |
#include <CallStack.h>
Public Member Functions | |
| Method () | |
| Method (const std::string &n, const std::string &f, int l) | |
| Method & | operator= (const Method &rhs) |
Public Attributes | |
| std::string | name |
| std::string | file |
| int | line |
Friends | |
| bool | operator== (const Method &lhs, const Method &rhs) |
| std::ostream & | operator<< (std::ostream &, const Method &) |
Definition at line 43 of file CallStack.h.
|
|
Definition at line 45 of file CallStack.h.
00045 {}
|
|
||||||||||||||||
|
Definition at line 46 of file CallStack.h. References file, line, and name.
|
|
|
Definition at line 53 of file CallStack.h. References file, line, and name.
|
|
||||||||||||
|
Definition at line 114 of file CallStack.h.
00115 {
00116 return ostream
00117 << method.name.c_str()
00118 << "(" << method.file.c_str() << ":" << method.line << ")";
00119 }
|
|
||||||||||||
|
Definition at line 121 of file CallStack.h.
00122 {
00123 return lhs.name == rhs.name
00124 && lhs.file == rhs.file
00125 && lhs.line == rhs.line;
00126 }
|
|
|
Definition at line 50 of file CallStack.h. Referenced by Method(), operator=(), and FIX::operator==(). |
|
|
Definition at line 51 of file CallStack.h. Referenced by Method(), operator=(), and FIX::operator==(). |
|
|
Definition at line 49 of file CallStack.h. Referenced by Method(), operator=(), and FIX::operator==(). |
1.3.6-20040222 written by Dimitri van Heesch,
© 1997-2001