Last change
on this file since 2 was 2, checked in by eros, 30 years ago |
Creation (par cvs import) du module PI (PeidaInter - active) Reza 15/02/96
|
File size:
618 bytes
|
Rev | Line | |
---|
[2] | 1 | #ifndef PIAPPLGEN_H_SEEN
|
---|
| 2 | #define PIAPPLGEN_H_SEEN
|
---|
| 3 |
|
---|
| 4 | #include "pimsghandler.h"
|
---|
| 5 | #include "pisysdep.h"
|
---|
| 6 | #include PICONT_H
|
---|
| 7 | #include PIMENUBAR_H
|
---|
| 8 |
|
---|
| 9 | class PIApplicationGen : public PIMsgHandler {
|
---|
| 10 | public:
|
---|
| 11 | PIApplicationGen();
|
---|
| 12 | virtual ~PIApplicationGen();
|
---|
| 13 |
|
---|
| 14 | virtual void Run()=0;
|
---|
| 15 | virtual void Stop()=0;
|
---|
| 16 |
|
---|
| 17 | virtual PIContainer* MainWin() {return topcont;}
|
---|
| 18 | virtual PIMenubar* Menubar() {return menubar;}
|
---|
| 19 |
|
---|
| 20 | virtual void AppendMenu(PIPDMenu *pdm);
|
---|
| 21 | protected:
|
---|
| 22 | PIContainer *topcont;
|
---|
| 23 | PIMenubar *menubar;
|
---|
| 24 | };
|
---|
| 25 |
|
---|
| 26 | #endif
|
---|
Note:
See
TracBrowser
for help on using the repository browser.