two classes -> returned values

56 Views Asked by At

I have 2 classes: Bucket and ExtHash

How do I assign the returned value of a function from the class Bucket to a element from the class ExtHash? Why doesn't my implementation work?

template <typename E, size_t N = 15> 
class Bucket
{
    size_t local; 
    size_t bucket_size;
. . .
 public:
E value1;
E value2;
...
E get_value1(){
return value1
}
E get_value2(){
return value2
}
....
};

template <typename E, size_t N = 15>
class ExtHash : public Container < E >
{
    size_t hash_size;
...
public:
...
virtual E function() const override;

};

template <typename E, size_t N>
E ExtHash<E, N>::function() const {
...
E last = Bucket<E, N>::get_value1(); //How should it look ???
E prev = Bucket<E, N>::get_value2);//How should it look????
...
}
0

There are 0 best solutions below