00001 00008 #ifndef Leaf_HPP 00009 #define Leaf_HPP 00010 00011 #include "common.hpp" 00012 #include "apriori/bodon/LeafWithoutConstructor.hpp" 00013 00014 00015 namespace Bodon 00016 { 00019 class Leaf : public LeafWithoutConstructor 00020 { 00021 public: 00022 Leaf() {counter = 0;} 00023 Leaf(const counter_t counter) { this->counter = counter;} 00024 }; 00025 } 00026 #endif