FRAMES NO FRAMES

Class IlcSearchMonitor

Definition file: ilsolver/basic.h
Include file: <ilsolver/ilosolver.h>

Instances of this class represent search monitors. A search monitor watches and reports events in a search. See the virtual member functions of its implementation class, IlcSearchMonitorI, to get an idea of what monitors can do in your application.

See Also:

Constructor Summary
public IlcSearchMonitor()
public IlcSearchMonitor(IlcSearchMonitorI * impl)
Method Summary
public IlcSearchMonitorI *getImpl() const
public voidoperator=(const IlcSearchMonitor & h)
Constructor Detail

IlcSearchMonitor

public IlcSearchMonitor()

This constructor creates a handle (an instance of the class IlcSearchMonitor) from a pointer to an implementation object (an instance of the implementation class IlcSearchMonitorI).

This constructor creates an empty handle. You must initialize it before you use it.


IlcSearchMonitor

public IlcSearchMonitor(IlcSearchMonitorI * impl)

This constructor creates a handle object from a pointer to an implementation object.


Method Detail

getImpl

public IlcSearchMonitorI * getImpl() const
This constructor creates an object by copying another one.

This member function returns a pointer to the implementation object of the invoking handle.


operator=

public void operator=(const IlcSearchMonitor & h)

This operator assigns an address to the handle pointer of the invoking object. That address is the location of the implementation object of the provided argument.