Previous Topic: CaUDP

Next Topic: bool SetUseVersionList(bool bUseVersionChooser)


bool SetUsePackageList(bool bUsePackageChooser)

Sets a boolean value for whether to pass the UDP process a Package List which would be expanded by the [PACKAGE] system variable.

Note: To pass a list of packages to a UDP process, this boolean is only part of the process. The following must happen:

Owning Class

CaUDP

Arguments

bool bUsePackageChooser-to use packages in package chooser or not

Return Value

bool-what was set for this value

Example

CaUDP& rUDP = rContext.GetUDP(); rUDP.SetUsePackageList(true); CaPackageChooser &rPackageUDP = rContext.GetPackageChooser(); rPackageUDP.Clear(); rPackageUDP.SetPackageName( rContext.GetPackageName() ); rPackageUDP.Execute(); rUDP.Execute();

More information: