Changeset View
Changeset View
Standalone View
Standalone View
source/blender/compositor/nodes/COM_TrackPositionNode.h
| Show All 10 Lines | |||||
| * | * | ||||
| * You should have received a copy of the GNU General Public License | * You should have received a copy of the GNU General Public License | ||||
| * along with this program; if not, write to the Free Software Foundation, | * along with this program; if not, write to the Free Software Foundation, | ||||
| * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. | * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. | ||||
| * | * | ||||
| * Copyright 2012, Blender Foundation. | * Copyright 2012, Blender Foundation. | ||||
| */ | */ | ||||
| #ifndef __COM_TRACKPOSITIONNODE_H__ | #pragma once | ||||
| #define __COM_TRACKPOSITIONNODE_H__ | |||||
| #include "COM_Node.h" | #include "COM_Node.h" | ||||
| #include "DNA_node_types.h" | #include "DNA_node_types.h" | ||||
| /** | /** | ||||
| * \brief TrackPositionNode | * \brief TrackPositionNode | ||||
| * \ingroup Node | * \ingroup Node | ||||
| */ | */ | ||||
| class TrackPositionNode : public Node { | class TrackPositionNode : public Node { | ||||
| public: | public: | ||||
| TrackPositionNode(bNode *editorNode); | TrackPositionNode(bNode *editorNode); | ||||
| void convertToOperations(NodeConverter &converter, const CompositorContext &context) const; | void convertToOperations(NodeConverter &converter, const CompositorContext &context) const; | ||||
| }; | }; | ||||
| #endif /* __COM_TRACKPOSITIONNODE_H__ */ | |||||