#include <Teuchos_Object.hpp>
Inheritance diagram for Teuchos::Object:

Set methods. | |
| virtual void | setLabel (const char *label) |
| Define object label using a character string. | |
| void | setTracebackMode (int tracebackModeValue) |
| Set the value of the Object error traceback report mode. | |
Accessor methods. | |
| virtual char * | label () const |
| Access the object label. | |
| int | getTracebackMode () |
| Get the value of the Object error traceback report mode. | |
Public Member Functions | |
Constructors/Destructor. | |
| Object (int tracebackModeIn=-1) | |
| Default Constructor. | |
| Object (const char *label, int tracebackModeIn=-1) | |
| Labeling Constructor. | |
| Object (const Object &obj) | |
| Copy Constructor. | |
| virtual | ~Object () |
| Destructor. | |
I/O method. | |
| virtual void | print (ostream &os) const |
| Print method for placing the object in an output stream. | |
Error reporting method. | |
| virtual int | reportError (const string message, int errorCode) const |
| Method for reporting errors with Teuchos objects. | |
Related Functions | |
| (Note that these are not member functions.) | |
| ostream & | operator<< (ostream &os, const Teuchos::Object &Obj) |
The Object class provides capabilities common to all Teuchos objects, such as a label that identifies an object instance, constant definitions, enum types.
Definition at line 53 of file Teuchos_Object.hpp.
|
|
Default Constructor. Object is the primary base class in Teuchos. All Teuchos class are derived from it, directly or indirectly. This class is seldom used explictly. Definition at line 37 of file Teuchos_Object.cpp. |
|
||||||||||||
|
Labeling Constructor. Creates an Object with the given label. Definition at line 43 of file Teuchos_Object.cpp. |
|
|
Copy Constructor. Makes an exact copy of an existing Object instance. Definition at line 49 of file Teuchos_Object.cpp. |
|
|
Destructor. Completely deletes an Object object. Definition at line 76 of file Teuchos_Object.cpp. |
|
|
Define object label using a character string.
Defines the label used to describe Definition at line 89 of file Teuchos_Object.cpp. |
|
|
Set the value of the Object error traceback report mode. Sets the integer error traceback behavior. TracebackMode controls whether or not traceback information is printed when run time integer errors are detected: <= 0 - No information report = 1 - Fatal (negative) values are reported >= 2 - All values (except zero) reported.
Definition at line 56 of file Teuchos_Object.cpp. |
|
|
Access the object label. Returns the string used to define this object. Definition at line 84 of file Teuchos_Object.cpp. |
|
|
Get the value of the Object error traceback report mode.
Definition at line 63 of file Teuchos_Object.cpp. |
|
|
Print method for placing the object in an output stream.
Reimplemented in Teuchos::SerialDenseMatrix< OrdinalType, ScalarType >, and Teuchos::SerialDenseVector< OrdinalType, ScalarType >. Definition at line 71 of file Teuchos_Object.cpp. |
|
||||||||||||
|
Method for reporting errors with Teuchos objects.
Definition at line 131 of file Teuchos_Object.hpp. |
|
||||||||||||
|
Output stream operator for handling the printing of Object. Definition at line 166 of file Teuchos_Object.hpp. |
1.3.9.1