Blame synfig-core/src/synfig/layers/layer_invisible.h

75fae5
/* === S Y N F I G ========================================================= */
75fae5
/*!	\file layer_invisible.h
75fae5
**	\brief Invisible Layer Class Implementation
75fae5
**
75fae5
**	$Id$
75fae5
**
75fae5
**	\legal
75fae5
**	......... ... 2016 Ivan Mahonin
75fae5
**
75fae5
**	This package is free software; you can redistribute it and/or
75fae5
**	modify it under the terms of the GNU General Public License as
75fae5
**	published by the Free Software Foundation; either version 2 of
75fae5
**	the License, or (at your option) any later version.
75fae5
**
75fae5
**	This package is distributed in the hope that it will be useful,
75fae5
**	but WITHOUT ANY WARRANTY; without even the implied warranty of
75fae5
**	MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
75fae5
**	General Public License for more details.
75fae5
**	\endlegal
75fae5
*/
75fae5
/* ========================================================================= */
75fae5
75fae5
/* === S T A R T =========================================================== */
75fae5
75fae5
#ifndef __SYNFIG_LAYER_INVISIBLE_H
75fae5
#define __SYNFIG_LAYER_INVISIBLE_H
75fae5
75fae5
/* === H E A D E R S ======================================================= */
75fae5
75fae5
#include <synfig layer.h=""></synfig>
75fae5
75fae5
/* === M A C R O S ========================================================= */
75fae5
75fae5
/* === T Y P E D E F S ===================================================== */
75fae5
75fae5
/* === C L A S S E S & S T R U C T S ======================================= */
75fae5
75fae5
namespace synfig {
75fae5
75fae5
/*!	\class Layer_Invisible
75fae5
**	\brief Base class for invisible layers
75fae5
*/
75fae5
class Layer_Invisible : public Layer
75fae5
{
75fae5
protected:
75fae5
	//! Default constructor. Not used directly.
75fae5
	Layer_Invisible();
75fae5
75fae5
protected:
75fae5
	virtual rendering::Task::Handle build_rendering_task_vfunc(Context context)const;
e222d9
}; // END of class Layer_Invisible
75fae5
75fae5
}; // END of namespace synfig
75fae5
75fae5
/* === E N D =============================================================== */
75fae5
75fae5
#endif