#include <NonImplemented.h>
Inheritance diagram for NonImplemented:
Public Member Functions | |
NonImplemented () throw (InternalProgrammerErrorException &) | |
Default constructor to initalize the private implementation (m_pimpl) data. | |
virtual | ~NonImplemented () |
Default virtual destructor. | |
Private Attributes | |
shared_ptr< NonImplementedImpl > | m_pimpl |
The private implementation in which you cannot get access to. |
This is good for ignoring XML AIML you do not want to implement. You can also use this as a generic XML AIML Tag too.
|
Default constructor to initalize the private implementation (m_pimpl) data.
|
|
Default virtual destructor. Destroys the private implementation (m_pimpl) data. |
|
The private implementation in which you cannot get access to. This shared_ptr holds the private methods and private member variables of this class. This makes ABI (Application Binary Interface) more resilient to change. See the private implementation idiom on the internet for more information about this. Reimplemented from InnerTemplateListImpl. |