00001 #ifndef FattenableLeaf_HPP 00002 #define FattenableLeaf_HPP 00003 00004 #include "common.hpp" 00005 #include "apriori/bodon/LeafWithoutConstructor.hpp" 00006 00007 00008 namespace Bodon 00009 { 00010 template <unsigned int VECTOR_SIZE> 00011 class FattenableLeaf : public LeafWithoutConstructor 00012 { 00013 public: 00014 FattenableLeaf() {counter = 0;} 00015 FattenableLeaf(const counter_t counter) { this->counter = counter;} 00016 protected: 00017 int a_vector[VECTOR_SIZE]; 00018 }; 00019 } 00020 #endif