show/hide this revision's text 2 added 27 characters in body

It's not clear what you want, but as a shot in the dark, is the following helpful?

template<typename T>
class IData
{
 public:
  virtual T getValue() = 0;
  virtual ~IData() {}
};

template<typename T, typename Allocator=std::allocator<T> >
class Data : public IData<T>
{
 public:
  virtual T getValue();
 private:

 boost::numeric::ublas::matrix<T, Allocator> data;
}
show/hide this revision's text 1

It's not clear what you want, but as a shot in the dark, is the following helpful?

template<typename T>
class IData
{
 public:
  virtual T getValue() = 0;
};

template<typename T, typename Allocator=std::allocator<T> >
class Data : public IData<T>
{
 public:
  virtual T getValue();
 private:

 boost::numeric::ublas::matrix<T, Allocator> data;
}