source: trunk/MagicSoft/Cosy/MStarguider.h@ 759

Last change on this file since 759 was 738, checked in by tbretz, 23 years ago
*** empty log message ***
  • Property svn:executable set to *
File size: 303 bytes
Line 
1#ifndef MSTARGUIDER_H
2#define MSTARGUIDER_H
3
4#include "Camera.h"
5#include "Starguider.h"
6
7class MStarguider : public Camera
8{
9private:
10 Starguider *fDisplay;
11
12public:
13 MStarguider()
14 {
15 fDisplay = new Starguider;
16 }
17
18 ~MStarguider()
19 {
20 delete fDisplay;
21 }
22};
23
24#endif
Note: See TracBrowser for help on using the repository browser.