UNIVERS  15.3
UNIVERS base processing software API
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
ProgressPEP.H
1 /* ProgressPEP.H */
2 /* $Id: ProgressPEP.H,v 1.2 2003/08/29 13:46:42 ibadm Exp $ */
3 #ifndef __ProgressPEP_H
4 #define __ProgressPEP_H
5 
6 #include <csi/pep.H>
7 #include <mix/Progress.hpp>
8 
9 
10 class ProgressPEP: public Progress
11 {
12 public:
13 
14  /* Create object which relates to "progress" PEP runtime parameter. */
15  ProgressPEP (Protocol* protocol, const char* pname);
16 
17 protected:
18 
19  /* Protocol to connect with */
20  Protocol *pepProtocol;
21 
22  /* Update progress indicator view */
23  virtual void update ();
24 
25 };
26 
27 
28 #endif /* ProgressPEP.H */
Definition: ProgressPEP.H:10
Definition: Progress.hpp:16
Definition: pep.H:23
virtual void update()