summaryrefslogtreecommitdiffstats
path: root/tksao/fitsy++/outchannel.h
blob: e321f932a8c34d57f8b43bc534cb34e176711ead (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// Copyright (C) 1999-2016
// Smithsonian Astrophysical Observatory, Cambridge, MA, USA
// For conditions of distribution and use, see copyright notice in "copyright"

#ifndef __outchannel_h__
#define __outchannel_h__

#include "outfits.h"

class OutFitsChannel : public virtual OutFitsStream {
 private:
  Tcl_Channel ch_;

 public:
  OutFitsChannel(Tcl_Interp*, const char*);

  int write(char*, size_t);
};

#endif