TuttleOFX  1
TuttleOFX/libraries/tuttle/src/tuttle/host/attribute/Attribute.cpp
Go to the documentation of this file.
00001 #include "Attribute.hpp"
00002 
00003 #include <tuttle/host/INode.hpp>
00004 
00005 namespace tuttle {
00006 namespace host {
00007 namespace attribute {
00008 
00009 Attribute::Attribute( INode& effect )
00010         : _effect( effect )
00011 {}
00012 
00013 Attribute::Attribute( const Attribute& other )
00014         : _effect( other._effect )
00015 {}
00016 
00017 Attribute::~Attribute() {}
00018 
00019 Attribute& Attribute::operator=( const Attribute& other )
00020 {
00021         return * this;
00022 }
00023 
00024 const INode& Attribute::getNode() const
00025 {
00026         return _effect;
00027 }
00028 
00029 }
00030 }
00031 }