blob: 71414b51fd5e3006cb868c91ba5139837b9b72c5 (
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
|
// Copyright (C) 1999-2015
// Smithsonian Astrophysical Observatory, Cambridge, MA, USA
// For conditions of distribution and use, see copyright notice in "copyright"
#ifndef __tkagif_h__
#define __tkagif_h__
class TkAGIF {
private:
Tcl_Interp* interp_;
ofstream* out_;
int width_;
int height_;
public:
TkAGIF(Tcl_Interp*);
int create(int, const char*[]);
int add(int, const char*[]);
int close(int, const char*[]);
};
extern TkAGIF* tkagif;
#endif
|