| Overview | Group | Tree | Graph | Index | Concepts |

IlcRCTextureESTFactoryI is an implementation object that
allocates instances of IlcRCTextureESTI.
For more information, see Texture Measurements.
See Also:
IlcResourceTexture, IlcRCTextureI, IlcRCTextureESTI
| Constructor and Destructor Summary | |
|---|---|
public | IlcRCTextureESTFactoryI(IloSolver solver) |
| Method Summary | |
|---|---|
public virtual IlcRCTexture | createRCTexture(IlcResourceConstraint, IlcResourceTexture) const |
Inherited Methods from IlcRCTextureFactoryI |
|---|
createRCTexture, getSolver, hasRealZeroCriticality |
| Constructor and Destructor Detail |
|---|
This constructor creates an instance of
IlcRCTextureESTFactoryI.
| Method Detail |
|---|
This method returns a pointer to a newly allocated instance of
IlcRCTexture representing the individual
curve of the resource constraint for the resource associated with the
resource texture.
Example
The createRCTexture() method could be written as
follows:
IlcRCTexture
IlcRCTextureESTFactoryI::createRCTexture(IlcResourceConstraint rct,
IlcResourceTexture texture) const {
IloSolver solver = getSolver();
return new (solver.getHeap())
IlcRCTextureESTI(solver, rct, texture);
}