#include "SQDef.h"
#include "SQErrorCodes.h"
#include "SQModel.h"
Go to the source code of this file.
|
SQ_ErrorCode | SQ_GetNumberOfBLM (SQ_BatchModel pBatchModel, int *piNumBLM) |
|
SQ_ErrorCode | SQ_GetBatchLevelModelNumber (SQ_BatchModel pBatchModel, int iBLMIndex, int *piBLModelNumber) |
|
SQ_ErrorCode | SQ_GetBatchLevelModel (SQ_BatchModel pBatchModel, int iBLModelNumber, SQ_Model *pBatchLevelModel) |
|
SQ_ErrorCode | SQ_GetNumberOfBEM (SQ_BatchModel pBatchModel, int *piNumBEM) |
|
SQ_ErrorCode | SQ_GetBatchEvolutionModelNumber (SQ_BatchModel pBatchModel, int iBEMIndex, int *piBEModelNumber) |
|
SQ_ErrorCode | SQ_GetBatchEvolutionModel (SQ_BatchModel pBatchModel, int iBEModelNumber, SQ_Model *pBatchEvolutionModel) |
|
◆ SQ_BatchModel
The object used to identify a Batch model (BM). IMPORTANT: Always initialize it to NULL!
◆ SQ_GetBatchEvolutionModel()
Get a Batch Evolution Model in this BM.
- Parameters
-
[in] | pBatchModel | The batch model to use |
[in] | iBEModelNumber | The Batch Evolution Model number. |
[out] | pBatchEvolutionModel | The Batch Evolution Model. |
- Returns
- Returns SQ_E_OK if success or an error code
◆ SQ_GetBatchEvolutionModelNumber()
Get the model number of a Batch Evolution Model in this BM.
- Parameters
-
[in] | pBatchModel | The batch model to use |
[in] | iBEMIndex | The index of the BEM in this BM. |
[out] | piBEModelNumber | The BE Model number. |
- Returns
- Returns SQ_E_OK if success or an error code
◆ SQ_GetBatchLevelModel()
Get a Batch Level Model in this BM.
- Parameters
-
[in] | pBatchModel | The batch model to use |
[in] | iBLModelNumber | The Batch Level Model number. |
[out] | pBatchLevelModel | The Batch Level Model. |
- Returns
- Returns SQ_E_OK if success or an error code
◆ SQ_GetBatchLevelModelNumber()
Get the model number of a Batch Level Model in this BM.
- Parameters
-
[in] | pBatchModel | The batch model to use |
[in] | iBLMIndex | The index of the BLM in this BM. |
[out] | piBLModelNumber | The BL Model number. |
- Returns
- Returns SQ_E_OK if success or an error code
◆ SQ_GetNumberOfBEM()
Get the number of Batch Evolution Models connected to this BM.
- Parameters
-
[in] | pBatchModel | The batch model to use |
[out] | piNumBEM | Number of Batch Evolution Models in this BM. |
- Returns
- Returns SQ_E_OK if success or an error code
◆ SQ_GetNumberOfBLM()
Get the number of Batch Level Models connected to this BM.
- Parameters
-
[in] | pBatchModel | The batch model to use |
[out] | piNumBLM | Number of Batch Level Models in this BM. |
- Returns
- Returns SQ_E_OK if success or an error code