source:
trunk/MagicSoft/Cosy/main/MStarguider.h@
1501
Last change on this file since 1501 was 925, checked in by , 23 years ago | |
---|---|
File size: 309 bytes |
Line | |
---|---|
1 | #ifndef MSTARGUIDER_H |
2 | #define MSTARGUIDER_H |
3 | |
4 | #include "Camera.h" |
5 | #include "MGStarguider.h" |
6 | |
7 | class MStarguider : public Camera |
8 | { |
9 | private: |
10 | MGStarguider *fDisplay; |
11 | |
12 | public: |
13 | MStarguider() |
14 | { |
15 | fDisplay = new MGStarguider; |
16 | } |
17 | |
18 | ~MStarguider() |
19 | { |
20 | delete fDisplay; |
21 | } |
22 | }; |
23 | |
24 | #endif |
Note:
See TracBrowser
for help on using the repository browser.