UNIVERS
15.3
UNIVERS base processing software API
Main Page
Namespaces
Classes
Files
Examples
File List
File Members
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
include
vel3dmod
u3d_progress.hpp
1
/* u3d_progress.hpp */
2
/* $Id: u3d_progress.hpp,v 1.6 2007/06/18 07:51:39 anton Exp $ */
3
//---------------------------------------------------------------------
4
#ifndef __u3d_progresshpp
5
#define __u3d_progresshpp
6
7
#include <stdio.h>
8
10
class
U3dProgress
11
{
12
public
:
13
14
U3dProgress
();
15
U3dProgress
(
float
vmin,
float
vmax);
16
17
virtual
~
U3dProgress
() {};
18
20
virtual
void
setLimits
(
float
vmin,
float
vmax);
21
23
virtual
void
setValue
(
float
value);
24
26
void
stop
();
27
29
bool
isStopped
();
30
31
private
:
32
33
float
m_vmn;
34
float
m_vmx;
35
bool
m_stop_flag;
37
int
m_percent;
38
};
39
40
41
//---------------------------------------------------------------------
42
#endif
/* u3d_progress.hpp */
U3dProgress::stop
void stop()
U3dProgress::isStopped
bool isStopped()
U3dProgress::setValue
virtual void setValue(float value)
U3dProgress::setLimits
virtual void setLimits(float vmin, float vmax)
U3dProgress
Definition:
u3d_progress.hpp:10
Generated by
1.8.5