source: trunk/MagicSoft/Cosy/main/MStarguider.h@ 1501

Last change on this file since 1501 was 925, checked in by tbretz, 23 years ago
*** empty log message ***
File size: 309 bytes
Line 
1#ifndef MSTARGUIDER_H
2#define MSTARGUIDER_H
3
4#include "Camera.h"
5#include "MGStarguider.h"
6
7class MStarguider : public Camera
8{
9private:
10 MGStarguider *fDisplay;
11
12public:
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.