X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=synfig-core%2Ftrunk%2Fsrc%2Fsynfig%2Fnode.h;h=6d6bbd5b9ff25f86fa4be288dc614082a7eb1162;hb=7c70b39267a02a92da8293b4ff5759b3f4f738d9;hp=ac877250a402ae60c81ddf38691060d9ba7eded6;hpb=e3acc0b267b14fda5db3c7bbb2f218b993ef84b3;p=synfig.git diff --git a/synfig-core/trunk/src/synfig/node.h b/synfig-core/trunk/src/synfig/node.h index ac87725..6d6bbd5 100644 --- a/synfig-core/trunk/src/synfig/node.h +++ b/synfig-core/trunk/src/synfig/node.h @@ -1,28 +1,29 @@ -/* === S I N F G =========================================================== */ +/* === S Y N F I G ========================================================= */ /*! \file node.h ** \brief Template Header ** ** $Id: node.h,v 1.3 2005/01/10 07:40:26 darco Exp $ ** ** \legal -** Copyright (c) 2002 Robert B. Quattlebaum Jr. +** Copyright (c) 2002-2005 Robert B. Quattlebaum Jr., Adrian Bentley ** -** This software and associated documentation -** are CONFIDENTIAL and PROPRIETARY property of -** the above-mentioned copyright holder. +** This package is free software; you can redistribute it and/or +** modify it under the terms of the GNU General Public License as +** published by the Free Software Foundation; either version 2 of +** the License, or (at your option) any later version. ** -** You may not copy, print, publish, or in any -** other way distribute this software without -** a prior written agreement with -** the copyright holder. +** This package is distributed in the hope that it will be useful, +** but WITHOUT ANY WARRANTY; without even the implied warranty of +** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +** General Public License for more details. ** \endlegal */ /* ========================================================================= */ /* === S T A R T =========================================================== */ -#ifndef __SINFG_PARENTNODE_H -#define __SINFG_PARENTNODE_H +#ifndef __SYNFIG_PARENTNODE_H +#define __SYNFIG_PARENTNODE_H /* === H E A D E R S ======================================================= */ @@ -40,7 +41,7 @@ /* === C L A S S E S & S T R U C T S ======================================= */ -namespace sinfg { +namespace synfig { class TimePoint { @@ -226,17 +227,17 @@ protected: virtual void get_times_vfunc(time_set &set) const = 0; }; -sinfg::Node* sinfg::find_node(const sinfg::GUID& guid); +synfig::Node* find_node(const synfig::GUID& guid); template etl::handle -guid_cast(const sinfg::GUID& guid) +guid_cast(const synfig::GUID& guid) { - return etl::handle::cast_dynamic(sinfg::find_node(guid)); + return etl::handle::cast_dynamic(synfig::find_node(guid)); } typedef etl::handle NodeHandle; -}; // END of namespace sinfg +}; // END of namespace synfig /* === E N D =============================================================== */