|
cmEngine
0.1.1
A library for interpreting CMake code.
|
#include <cmLoopObject.h>
Data Fields | |
| void * | impl |
| void(* | release )(void *impl) |
| int(* | iterate )(void *impl) |
| int(* | is_done )(void *impl) |
This structure contains the functions that must be implemented by a loop object.
| void* cmLoopObject::impl |
Implementation data for the loop object.
| int(* cmLoopObject::is_done) (void *impl) |
Indicates completion of the loop object.
| int(* cmLoopObject::iterate) (void *impl) |
Iterates the loop object.
| void(* cmLoopObject::release) (void *impl) |
Releases resources allocated by the object.
1.8.12