Consider the following header file:

// Foo.h
class Foo {
    public: 
        template <typename T>
        void read(T& value);
};

I want to explicitly instantiate the Foo::read member function template in a source file for all types included in a boost::mpl::vector:

// Foo.cc
#include <boost/mpl/vector.hpp>
#include "Foo.h"

template <typename T>
void Foo::read(T& value) { // do something }

typedef boost::mpl::vector<int, long, float> types;

// template Foo::read<int  >(int&);
// template Foo::read<long >(long&);
// template Foo::read<float>(float&);

// instantiate automatically ???

Is it possible? Thanks in advance, Daniel.

EDIT

I found some solution - it seems that assigning a pointer to Foo::read<T> in the constructor of a struct, of which variable is then declared, cause instantiation:

// intermezzo
template <typename T> struct Bar {
    Bar<T>() {
        void (Foo::*funPtr)(T&) = &Foo::read<T>;
    }
};

static Bar<int  > bar1;
static Bar<long > bar2;
static Bar<float> bar3;

So then the process can be automatized as follows:

// Foo.cc continued
template <typename B, typename E>
struct my_for_each {
    my_for_each<B, E>() {
        typedef typename B::type T;      // vector member
        typedef void (Foo::*FunPtr)(T&); // pointer to Foo member function
        FunPtr funPtr = &Foo::read<T>;   // cause instantiation?
    }

    my_for_each<typename boost::mpl::next<B>::type, E> next;
};

template<typename E>
struct my_for_each<E, E> {};

static my_for_each< boost::mpl::begin<types>::type,
                    boost::mpl::end<types>::type > first;

But I don't know if this solution is portable and standard-conformant? (Works with Intel and GNU compilers.)

link|improve this question

2  
nitpick: the question might be a tad clearer if your Foo class actually head a read member in Foo.h – Mat Apr 19 '11 at 11:32
@nitpick: edited, my fault, thanks – Daniel Langr Apr 19 '11 at 11:39
1  
Short of using preprocessor based solutions, I don't think it's possible. – Matthieu M. Apr 19 '11 at 11:41
feedback

2 Answers

I am not sure if this is the solution to your problem, but maybe you can do with a template specialization.

New header:

// Foo.h

template < typename T >
struct RealRead;

class Foo {
    public: 
        template <typename T>
        void read(T& value);
};

template <typename T>
void Foo::read(T& value)
{
  RealRead< T >::read( value );
}

New source :

template < >
struct RealRead< int >
{
  static void read( int & v )
  {
    // do read
  }
};
template < >
struct RealRead< float >
{
  static void read( float & v )
  {
    // do read
  }
};

//etc

// explicitly instantiate templates
template struct RealRead< int >;
template struct RealRead< float >;
link|improve this answer
feedback

You can explicitly instantiate Foo for a given T template parameter with template class Foo<T>;

As for batch instantiation, I don't think it is possible. Maybe with variadic templates it is possible to create an Instantiate class so something like Instantiate<Foo, int, short, long, float, etc> would instantiate the appropriate templates, but other than that, you have to resort to manual instantiation.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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