Ignore:
Timestamp:
01/31/08 13:58:30 (17 years ago)
Author:
tbretz
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Cosy/videodev
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Cosy/videodev/Writer.cc

    r8378 r8847  
    44#include <fstream>  // ofstream
    55
     6#include <TVector2.h>
     7
    68#include <stdio.h>    // FILE
    79#include <png.h>
    8 #include <coord.h>
    910
    1011#include "MTime.h"
     
    1516
    1617void Writer::Png(const char *fname, const byte *buf,
    17                  struct timeval *date, const XY xy)
     18                 struct timeval *date, const TVector2 xy)
    1819{
    1920    MTime t(*date);
     
    139140}
    140141
    141 void Writer::Ppm(const char *fname, const byte *img, struct timeval *date, const XY xy)
     142void Writer::Ppm(const char *fname, const byte *img, struct timeval *date, const TVector2 xy)
    142143{
    143144    TString name = fname;
  • trunk/MagicSoft/Cosy/videodev/Writer.h

    r8810 r8847  
    99#endif
    1010
    11 #ifndef COORD_H
    12 #include <coord.h>
    13 #endif
     11class TVector2;
    1412
    1513typedef unsigned char byte;
     
    2220    virtual ~Writer() { }
    2321
    24     static void Ppm(const char *fname, const byte *img, struct timeval *date, const XY xy);
    25     static void Png(const char *fname, const byte *buf, struct timeval *date, const XY xy);
     22    static void Ppm(const char *fname, const byte *img, struct timeval *date, const TVector2 xy);
     23    static void Png(const char *fname, const byte *buf, struct timeval *date, const TVector2 xy);
    2624
    2725    ClassDef(Writer, 0)
Note: See TracChangeset for help on using the changeset viewer.