moreupdates
[synfig.git] / synfig-core / trunk / src / modules / mod_imagemagick / trgt_imagemagick.h
index 946b997..bd6ca4e 100644 (file)
@@ -1,5 +1,5 @@
 /*! ========================================================================
-** Sinfg
+** Synfig
 ** Template Header File
 ** $Id: trgt_imagemagick.h,v 1.1.1.1 2005/01/04 01:23:11 darco Exp $
 **
 
 /* === S T A R T =========================================================== */
 
-#ifndef __SINFG_TRGT_IMAGEMAGICK_H
-#define __SINFG_TRGT_IMAGEMAGICK_H
+#ifndef __SYNFIG_TRGT_IMAGEMAGICK_H
+#define __SYNFIG_TRGT_IMAGEMAGICK_H
 
 /* === H E A D E R S ======================================================= */
 
-#include <sinfg/target_scanline.h>
-#include <sinfg/string.h>
+#include <synfig/target_scanline.h>
+#include <synfig/string.h>
 #include <cstdio>
 
 /* === M A C R O S ========================================================= */
 /* === C L A S S E S & S T R U C T S ======================================= */
 
 
-class imagemagick_trgt : public sinfg::Target_Scanline
+class imagemagick_trgt : public synfig::Target_Scanline
 {
-       SINFG_TARGET_MODULE_EXT
+       SYNFIG_TARGET_MODULE_EXT
 private:
        int imagecount;
        bool multi_image;
        FILE *file;
-       sinfg::String filename;
+       synfig::String filename;
        unsigned char *buffer;
-       sinfg::Color *color_buffer;
-       sinfg::PixelFormat pf;
+       synfig::Color *color_buffer;
+       synfig::PixelFormat pf;
 public:
        imagemagick_trgt(const char *filename);
        virtual ~imagemagick_trgt();
 
-       virtual bool set_rend_desc(sinfg::RendDesc *desc);
+       virtual bool set_rend_desc(synfig::RendDesc *desc);
        virtual bool init();
-       virtual bool start_frame(sinfg::ProgressCallback *cb);
+       virtual bool start_frame(synfig::ProgressCallback *cb);
        virtual void end_frame();       
-       virtual sinfg::Color * start_scanline(int scanline);
+       virtual synfig::Color * start_scanline(int scanline);
        virtual bool end_scanline();
 };