1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
#include "StubProgressTool.hpp"<--- Skipping configuration 'DBL_MAX' since the value of 'DBL_MAX' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'DBL_MIN' since the value of 'DBL_MIN' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'M_PI' since the value of 'M_PI' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.

StubProgressTool::StubProgressTool()
{
}

StubProgressTool::~StubProgressTool()
{
}

//=============================================================================
// Description: 
// Notes:  This will initialize the progress bar and display it
//         The difference between nLower and nUpper will be the number of
//         integral steps the progress bar will before the process is complete
// Author:bwhanks
// Date: 4/29/02
//=============================================================================
void
StubProgressTool::start(int , int ,
                           const char* ,
                           const char* ,
                           CubitBoolean ,
                           CubitBoolean )
{
}

//=============================================================================
// Description: end
// Notes:  closes/finishes the prgress bar window
// Author:bwhanks
// Date: 4/29/02
//=============================================================================
void
StubProgressTool::end()
{
}

//=============================================================================
// Description: makes one integer step of the progress bar
// Notes:
// Author:bwhanks
// Date: 4/29/02
//=============================================================================
void StubProgressTool::step()
{
}

//=============================================================================
// Description: moves the progress bar to the specified percentage
// Notes:  only moves if percentage is greater the the current step
//         pcnt should be between 0 and 1
// Author:bwhanks
// Date: 4/29/02
//=============================================================================
void StubProgressTool::percent( double )
{
}

void StubProgressTool::check_interrupt()
{
}