#include "CompAttribute.hpp" #ifndef _OTB_TRISKELE_WEIGHT_ATTRIBUTES_HPP #define _OTB_TRISKELE_WEIGHT_ATTRIBUTES_HPP #include "triskeleBase.hpp" namespace otb { namespace triskele { /** Attribute */ template class WeightAttributes : public CompAttribute { public: inline WeightAttributes (const Tree &tree); inline ~WeightAttributes (); inline void setWeightBounds (Tree &tree); virtual inline ostream &print (ostream &out) const { CompAttribute::print (out, "weight"); } }; #include "WeightAttributes.tpp" } // triskele } // otb #endif // _OTB_TRISKELE_WEIGHT_ATTRIBUTES_HPP