vote up 1 vote down star

Dears,

I cannot figure this out. I need to have an abstract template base class, which is the following:


template <class T> class Dendrite
{
        public:
                Dendrite()
                {
                }

                virtual ~Dendrite()
                {
                }

                virtual void Get(std::vector<T> &o) = 0;

        protected:
                std::vector<T> _data;
};

Now, I derive from this which specifies exact usage of Dendrite.

Now the problem.

How do I create a vector of pointers to the base-class with no specific type, which I want to specify by pushing elements to it later? Something like:


class Foo
{
        public:
                ...

        private:
                std::vector<Dendrite *> _inputs; //!< Unfortunately, this doesn't work...

                //! Now I could later on push elements to this vector like
                //!
                //! _inputs.push_back(new DeriveFromDendrite<double>()) and
                //! _inputs.push_back(new DeriveFromDendrite<int>()).
};

Is this possible or am I missing something very basic here?

flag

3 Answers

vote up 9 vote down check

Typically this is done by your template inheriting from an interface class, IE:

template <class T> class Dendrite : public IDendrite
{
        public:
                Dendrite()
                {
                }

                virtual ~Dendrite()
                {
                }

                void Get(std::vector<T> &o) = 0;

        protected:
                std::vector<T> _data;
};

and then you're IDendrite class could be stored as pointers:

std::vector<IDendrite*> m_dendriteVec;

However, in your situation, you are taking the template parameter as part of your interface. You may also need to wrap this also.

class IVectorParam
{
}

template <class T>
class CVectorParam
{
    std::vector<T> m_vect;
}

giving you

class IDendrite
{
   ...
public:
   virtual ~IDendrite()
   virtual void Get(IVectorParam*) = 0; 
}

template <class T> class Dendrite : public IDendrite
{
  ...
  // my get has to downcast to o CVectorParam<T>
  virtual void Get(IVectorParam*);
};
link|flag
vote up 0 vote down

Yes it is possible. Just make sure to provide virtual functions, and virtual destructor. In addition, you can use typeid to get the actual type (as well as dynamic_cast to check the type)

link|flag
vote up 0 vote down

Your code may working if you do like this : Please ensure design aspects yourself

template <class T> class Dendrite
{
        public:
                Dendrite()
                {
                }

                virtual ~Dendrite()
                {
                }

                virtual void Get(std::vector<T> &o) = 0;

        protected:
                std::vector<T> _data;
};

template<class T>
class derived:public Dendrite<T>
{
    public:
    	derived(){};
    	void Get(std::vector<T> &o)
    	{
    		std::cout<<"This is a test"<<std::endl;
    	}
};

int main()
{


    std::vector<Dendrite<int>*> vec;
    Dendrite<int> *ptr=new derived<int>();
    vec.push_back(ptr);
    std::vector<int> testVec;
    vec[0]->Get(testVec);
}
link|flag
You missed the point; now you are forcing every element to be int-type. – nhaa123 Oct 1 at 6:09

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.