Problems with passing an anonymous temporary function-object to a templatized constructor.

Posted by Akanksh on Stack Overflow See other posts from Stack Overflow or by Akanksh
Published on 2010-04-06T13:15:28Z Indexed on 2010/04/06 13:23 UTC
Read the original article Hit count: 203

Filed under:
|
|
|

I am trying to attach a function-object to be called on destruction of a templatized class. However, I can not seem to be able to pass the function-object as a temporary. The warning I get is (if the comment the line xi.data = 5;):

    warning C4930: 'X<T> xi2(writer (__cdecl *)(void))': 
    prototyped function not called (was a variable definition intended?)
            with
            [
                T=int
            ]

and if I try to use the constructed object, I get a compilation error saying:

error C2228: left of '.data' must have class/struct/union

I apologize for the lengthy piece of code, but I think all the components need to be visible to assess the situation.

template<typename T>
struct Base
{
    virtual void run( T& ){}
    virtual ~Base(){}
};

template<typename T, typename D>
struct Derived : public Base<T>
{
    virtual void run( T& t )
    {
        D d;
        d(t);
    }
};

template<typename T>
struct X
{
    template<typename R>
    X(const R& r)
    {
       std::cout << "X(R)" << std::endl;
       ptr = new Derived<T,R>(); 
    }

    X():ptr(0)
    { 
        std::cout << "X()" << std::endl; 
    }

    ~X()
    {
        if(ptr) 
        {
            ptr->run(data);
            delete ptr;
        }
        else
        {
            std::cout << "no ptr" << std::endl;
        }
    }

    Base<T>* ptr; 
    T data;
};

struct writer
{
    template<typename T>
    void operator()( const T& i )
    { 
        std::cout << "T : " << i << std::endl;
    }
};

int main()
{
    {
        writer w;
        X<int> xi2(w);
        //X<int> xi2(writer()); //This does not work!
        xi2.data = 15;       
    }

    return 0;
};

The reason I am trying this out is so that I can "somehow" attach function-objects types with the objects without keeping an instance of the function-object itself within the class. Thus when I create an object of class X, I do not have to keep an object of class writer within it, but only a pointer to Base<T> (I'm not sure if I need the <T> here, but for now its there).

The problem is that I seem to have to create an object of writer and then pass it to the constructor of X rather than call it like X<int> xi(writer();

I might be missing something completely stupid and obvious here, any suggestions?

© Stack Overflow or respective owner

Related posts about c++

Related posts about templates