blob: a225e6bd4eea25802e78dad53772b2e57b845daf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
// Copyright (C) 1999-2016
// Smithsonian Astrophysical Observatory, Cambridge, MA, USA
// For conditions of distribution and use, see copyright notice in "copyright"
#ifndef __fitsphoto_h__
#define __fitsphoto_h__
#include <tcl.h>
#include "vector.h"
#include "file.h"
class FitsPhoto : public FitsFile {
public:
FitsPhoto(Tcl_Interp* interp, const char*);
~FitsPhoto();
};
class FitsPhotoCube : public FitsFile {
public:
FitsPhotoCube(Tcl_Interp* interp, const char*);
~FitsPhotoCube();
};
class FitsPhotoCubeNext : public FitsFile {
public:
FitsPhotoCubeNext(FitsFile*);
};
#endif
|