modifié : include/ArrayTree/ArrayTreeBuilder.tpp modifié : include/ArrayTree/Border.hpp modifié : include/ArrayTree/Border.tpp modifié : include/ArrayTree/GraphWalker.tpp modifié : include/ArrayTree/Leader.hpp modifié : include/ArrayTree/Leader.tpp modifié : include/Attribute.hpp modifié : include/AttributeProfiles.hpp modifié : include/AttributeProfiles.tpp modifié : include/CompAttribute.hpp modifié : include/CompAttribute.tpp modifié : include/IImage.hpp modifié : include/IImage.tpp modifié : include/Tree.hpp modifié : include/Tree.tpp modifié : include/TreeBuilder.hpp modifié : include/TreeBuilder.tpp supprimé : src/Attribute.cpp modifié : src/CMakeLists.txt modifié : src/QuadTree/QuadTreeBuilder.cpp modifié : src/TestArrayTreeBuilder.cpp modifié : src/Tree.cpp modifié : src/XMLTree/XMLTreeBuilder.cpp modifié : src/apGenerator.cpp
42 lines
747 B
C++
42 lines
747 B
C++
#ifndef _OTB_TRISKELE_ATTRIBUTE_HPP
|
|
#define _OTB_TRISKELE_ATTRIBUTE_HPP
|
|
|
|
#include "Tree.hpp"
|
|
|
|
namespace otb {
|
|
namespace triskele {
|
|
|
|
// /** Attribute */
|
|
// class Attribute {
|
|
// public:
|
|
// Attribute ();
|
|
// Attribute (const Attribute &o) = delete;
|
|
|
|
// void
|
|
// setTree (Tree &treeC);
|
|
|
|
// template<typename T>
|
|
// void
|
|
// free ();
|
|
|
|
// template<typename T>
|
|
// T
|
|
// getAttribute (const DimNodeId &nodeId);
|
|
|
|
// template<typename T>
|
|
// void
|
|
// generate ();
|
|
|
|
// protected:
|
|
// virtual void
|
|
// generate () = 0;
|
|
|
|
// protected:
|
|
// Tree *tree;
|
|
// void *attributes;
|
|
// };
|
|
} // triskele
|
|
} // otb
|
|
|
|
#endif // _OTB_TRISKELE_ATTRIBUTE_HPP
|