cgma
StubProgressTool.cpp
Go to the documentation of this file.
00001 #include "StubProgressTool.hpp"
00002 
00003 StubProgressTool::StubProgressTool()
00004 {
00005 }
00006 
00007 StubProgressTool::~StubProgressTool()
00008 {
00009 }
00010 
00011 //=============================================================================
00012 // Description: 
00013 // Notes:  This will initialize the progress bar and display it
00014 //         The difference between nLower and nUpper will be the number of
00015 //         integral steps the progress bar will before the process is complete
00016 // Author:bwhanks
00017 // Date: 4/29/02
00018 //=============================================================================
00019 void
00020 StubProgressTool::start(int , int ,
00021                            const char* ,
00022                            const char* ,
00023                            CubitBoolean ,
00024                            CubitBoolean )
00025 {
00026 }
00027 
00028 //=============================================================================
00029 // Description: end
00030 // Notes:  closes/finishes the prgress bar window
00031 // Author:bwhanks
00032 // Date: 4/29/02
00033 //=============================================================================
00034 void
00035 StubProgressTool::end()
00036 {
00037 }
00038 
00039 //=============================================================================
00040 // Description: makes one integer step of the progress bar
00041 // Notes:
00042 // Author:bwhanks
00043 // Date: 4/29/02
00044 //=============================================================================
00045 void StubProgressTool::step()
00046 {
00047 }
00048 
00049 //=============================================================================
00050 // Description: moves the progress bar to the specified percentage
00051 // Notes:  only moves if percentage is greater the the current step
00052 //         pcnt should be between 0 and 1
00053 // Author:bwhanks
00054 // Date: 4/29/02
00055 //=============================================================================
00056 void StubProgressTool::percent( double )
00057 {
00058 }
00059 
00060 void StubProgressTool::check_interrupt()
00061 {
00062 }
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines