X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=synfig-core%2Ftrunk%2Fsrc%2Fsynfig%2Fvaluenode_sine.h;fp=synfig-core%2Ftrunk%2Fsrc%2Fsynfig%2Fvaluenode_sine.h;h=9484c5eb4dfa9d1231406b6094220bd12e961f61;hb=e3acc0b267b14fda5db3c7bbb2f218b993ef84b3;hp=0000000000000000000000000000000000000000;hpb=ced68168d8518aac837f20e73bcd1e84a6bd6178;p=synfig.git diff --git a/synfig-core/trunk/src/synfig/valuenode_sine.h b/synfig-core/trunk/src/synfig/valuenode_sine.h new file mode 100644 index 0000000..9484c5e --- /dev/null +++ b/synfig-core/trunk/src/synfig/valuenode_sine.h @@ -0,0 +1,81 @@ +/* === S I N F G =========================================================== */ +/*! \file valuenode_sine.h +** \brief Template Header +** +** $Id: valuenode_sine.h,v 1.1.1.1 2005/01/04 01:23:15 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_VALUENODE_SINE_H +#define __SINFG_VALUENODE_SINE_H + +/* === H E A D E R S ======================================================= */ + +#include "valuenode.h" + +/* === M A C R O S ========================================================= */ + +/* === C L A S S E S & S T R U C T S ======================================= */ + +namespace sinfg { + +class ValueNode_Sine : public LinkableValueNode +{ + ValueNode::RHandle angle_; + ValueNode::RHandle amp_; + + ValueNode_Sine(const ValueBase::Type &x); + +public: + + typedef etl::handle Handle; + typedef etl::handle ConstHandle; + + + virtual ValueBase operator()(Time t)const; + + virtual ~ValueNode_Sine(); + + virtual String get_name()const; + virtual String get_local_name()const; + + + virtual ValueNode::LooseHandle get_link_vfunc(int i)const; + virtual int link_count()const; + virtual String link_name(int i)const; + + virtual String link_local_name(int i)const; + virtual int get_link_index_from_name(const String &name)const; + +protected: + LinkableValueNode* create_new()const; + virtual bool set_link_vfunc(int i,ValueNode::Handle x); + +public: + using sinfg::LinkableValueNode::get_link_vfunc; + + using sinfg::LinkableValueNode::set_link_vfunc; + static bool check_type(ValueBase::Type type); + static ValueNode_Sine* create(const ValueBase &x); +}; // END of class ValueNode_Sine + +}; // END of namespace sinfg + +/* === E N D =============================================================== */ + +#endif