IsUnix
Description
Returns True if the CQClearQuest object is created on the UNIX system and Linux platforms.
Note: This method became available in version 2002.05.00.
Syntax
Perl
$ClearQuestObj->IsUnix();
- Identifier
- Description
- CQClearQuest
- A CQClearQuest object.
- Return value
- Returns True if the object is created on the UNIX system and Linux platforms, False otherwise.
Example
Perl
use CQPerlExt;
my $cqobject = CQClearQuest ::Build();
$is_Windows_flag = $cqobject->IsUnix();
CQClearQuest ::Unbuild($cqobject);