Ipopt  3.12.12
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
Protected Member Functions | Private Attributes | List of all members
Ipopt::Subject Class Reference

Slight Variation of the Observer Design Pattern (Subject part). More...

#include <IpObserver.hpp>

+ Inheritance diagram for Ipopt::Subject:

Public Member Functions

Constructors/Destructors
 Subject ()
 Default Constructor. More...
 
virtual ~Subject ()
 Default destructor. More...
 
Methods to Add and Remove Observers.

Currently, the notify_type flags are not used, and Observers are attached in general and will recieve all notifications (of the type requested and possibly of types not requested).

It is up to the observer to ignore the types they are not interested in. The NotifyType in the parameter list is so a more efficient mechanism depending on type could be implemented later if necessary.

void AttachObserver (Observer::NotifyType notify_type, Observer *observer) const
 Attach the specified observer (i.e., begin recieving notifications). More...
 
void DetachObserver (Observer::NotifyType notify_type, Observer *observer) const
 Detach the specified observer (i.e., no longer recieve notifications). More...
 

Protected Member Functions

void Notify (Observer::NotifyType notify_type) const
 

Private Member Functions

Default Compiler Generated Methods

(Hidden to avoid implicit creation/calling).

These methods are not implemented and we do not want the compiler to implement them for us, so we declare them private and do not define them. This ensures that they will not be implicitly created/called.

 Subject (const Subject &)
 Copy Constructor. More...
 
void operator= (const Subject &)
 Overloaded Equals Operator. More...
 

Private Attributes

std::vector< Observer * > observers_
 

Detailed Description

Slight Variation of the Observer Design Pattern (Subject part).

This class implements the Subject class of the Observer Design Pattern. An Observer "Attach"es to a Subject, indicating that it would like to be notified of changes in the Subject. Any derived class that is to be observed has to inherit off the Subject base class. If the subject needs to notify the Observer, it calls the Notify method.

Definition at line 129 of file IpObserver.hpp.

Constructor & Destructor Documentation

Ipopt::Subject::Subject ( )
inline

Default Constructor.

Definition at line 140 of file IpObserver.hpp.

Ipopt::Subject::~Subject ( )
inlinevirtual

Default destructor.

Definition at line 296 of file IpObserver.hpp.

Ipopt::Subject::Subject ( const Subject )
private

Copy Constructor.

Member Function Documentation

void Ipopt::Subject::AttachObserver ( Observer::NotifyType  notify_type,
Observer observer 
) const
inline

Attach the specified observer (i.e., begin recieving notifications).

Definition at line 309 of file IpObserver.hpp.

void Ipopt::Subject::DetachObserver ( Observer::NotifyType  notify_type,
Observer observer 
) const
inline

Detach the specified observer (i.e., no longer recieve notifications).

Definition at line 329 of file IpObserver.hpp.

void Ipopt::Subject::Notify ( Observer::NotifyType  notify_type) const
inlineprotected

Definition at line 351 of file IpObserver.hpp.

void Ipopt::Subject::operator= ( const Subject )
private

Overloaded Equals Operator.

Member Data Documentation

std::vector<Observer*> Ipopt::Subject::observers_
mutableprivate

Definition at line 192 of file IpObserver.hpp.


The documentation for this class was generated from the following file: