more updates
[synfig.git] / synfig-core / trunk / src / sinfg / layer_solidcolor.h
diff --git a/synfig-core/trunk/src/sinfg/layer_solidcolor.h b/synfig-core/trunk/src/sinfg/layer_solidcolor.h
deleted file mode 100644 (file)
index 07f8106..0000000
+++ /dev/null
@@ -1,70 +0,0 @@
-/* === S I N F G =========================================================== */
-/*!    \file layer_solidcolor.h
-**     \brief Template Header
-**
-**     $Id: layer_solidcolor.h,v 1.1.1.1 2005/01/04 01:23:14 darco Exp $
-**
-**     \legal
-**     Copyright (c) 2002 Robert B. Quattlebaum Jr.
-**
-**     This software and associated documentation
-**     are CONFIDENTIAL and PROPRIETARY property of
-**     the above-mentioned copyright holder.
-**
-**     You may not copy, print, publish, or in any
-**     other way distribute this software without
-**     a prior written agreement with
-**     the copyright holder.
-**     \endlegal
-*/
-/* ========================================================================= */
-
-/* === S T A R T =========================================================== */
-
-#ifndef __SINFG_LAYER_SOLIDCOLOR_H
-#define __SINFG_LAYER_SOLIDCOLOR_H
-
-/* === H E A D E R S ======================================================= */
-
-#include "layer_composite.h"
-#include "color.h"
-
-/* === M A C R O S ========================================================= */
-
-/* === T Y P E D E F S ===================================================== */
-
-/* === C L A S S E S & S T R U C T S ======================================= */
-
-namespace sinfg {
-
-class Layer_SolidColor : public Layer_Composite, public Layer_NoDeform
-{
-       SINFG_LAYER_MODULE_EXT
-       
-private:
-
-       Color color;
-
-public:
-       
-       Layer_SolidColor();
-       
-       virtual bool set_param(const String & param, const sinfg::ValueBase &value);
-
-       virtual ValueBase get_param(const String & param)const;
-
-       virtual Color get_color(Context context, const Point &pos)const;
-       
-       virtual bool accelerated_render(Context context,Surface *surface,int quality, const RendDesc &renddesc, ProgressCallback *cb)const;
-       
-       virtual Vocab get_param_vocab()const;
-
-       virtual sinfg::Layer::Handle hit_check(sinfg::Context context, const sinfg::Point &point)const;
-
-}; // END of class Layer_SolidColor
-
-}; // END of namespace sinfg
-
-/* === E N D =============================================================== */
-
-#endif