#include <IFCAccessAdaptor.h>
Public Member Functions | |
| virtual | ~IFCAccessAdaptor () |
| virtual void | getVersion (int &iMajor, int &iMinor, int &iMicro) const =0 |
| virtual const char * | getDescription () const =0 |
| virtual void | onAccess (IFCAccess *pAccess)=0 |
| virtual IFCAccessAdaptor::~IFCAccessAdaptor | ( | ) | [virtual] |
| virtual void IFCAccessAdaptor::getVersion | ( | int & | iMajor, | |
| int & | iMinor, | |||
| int & | iMicro | |||
| ) | const [pure virtual] |
Called by the server to get the version of the plug-in.
| iMajor | The major version of the plug-in. | |
| iMinor | The minor version of the plug-in. | |
| iMicro | The micro version of the plug-in. |
| virtual const char* IFCAccessAdaptor::getDescription | ( | ) | const [pure virtual] |
Called by the server to get a string that describes the plug-in.
| virtual void IFCAccessAdaptor::onAccess | ( | IFCAccess * | pAccess | ) | [pure virtual] |
Called by the server to notify the plug-in of an access event. The IFCAccess class lists the supported access events. Write code in this callback method to control access to the server.
| pAccess | A pointer to an access event object that contains information about the access event. |