#include <Driver_Document.h>

Public Member Functions | |
| Driver_Document () | |
| virtual | ~Driver_Document () |
| virtual void | Perform ()=0 |
| void | SetFile (const std::string &theFileName) |
| void | SetDocument (SMESHDS_Document *theDocument) |
Protected Attributes | |
| SMESHDS_Document * | myDocument |
| std::string | myFile |
Definition at line 32 of file Driver_Document.h.
| Driver_Document::Driver_Document | ( | ) |
Definition at line 25 of file Driver_Document.cxx.
: myDocument(NULL) {}
| virtual Driver_Document.~Driver_Document | ( | ) | [virtual] |
Definition at line 36 of file Driver_Document.h.
{}
| virtual void Driver_Document.Perform | ( | ) | [pure virtual] |
| void Driver_Document::SetDocument | ( | SMESHDS_Document * | theDocument | ) |
Definition at line 36 of file Driver_Document.cxx.
References myDocument.
{
myDocument = theDocument;
}
| void Driver_Document::SetFile | ( | const std::string & | theFileName | ) |
Definition at line 30 of file Driver_Document.cxx.
References myFile, and SMESH_Nut.theFileName.
{
myFile = theFileName;
}
SMESHDS_Document* Driver_Document.myDocument [protected] |
Definition at line 43 of file Driver_Document.h.
Referenced by SetDocument().
std::string Driver_Document.myFile [protected] |
Definition at line 44 of file Driver_Document.h.
Referenced by SetFile().