Tagged Questions
6
votes
5answers
467 views
Class member functions instantiated by traits [policies, actually]
I am reluctant to say I can't figure this out, but I can't figure this out. I've googled and searched Stack Overflow, and come up empty.
The abstract, and possibly overly vague form of the question ...
5
votes
2answers
145 views
no matching function in template class
I get no matching member function error when i try to compile this code on my mingw32 compiler
#include <iostream>
using std::cout;
template <class T>
class Pattern
{
public:
...
3
votes
4answers
232 views
When do we need a .template construct
I made the following program
#include <iostream>
#include <typeinfo>
template<class T>
struct Class
{
template<class U>
void display(){
...
3
votes
1answer
184 views
CPP templated member function specialization
I'm trying to specialize the member function moment() only (not the hole class) like this:
template<class Derived, class T>
class AbstractWavelet {
public:
[...]
template<bool ...
2
votes
1answer
36 views
can we use MemberFunction type as template parameter?
if there's a class T{ void M() };, I want to have a template class that can use T::M as template parameter. say something like this:
T t;
TUser<T::M> user(t);
is it possible?
2
votes
2answers
341 views
How to call a template member function in a template base class?
When calling a non-templated member function in a base class one can import its name with using into the derived class and then use it. Is this also possible for template member functions in a base ...
2
votes
1answer
206 views
c++ member function specialisation of a class that has a template as a parameter
I am working on a template class Array, which accepts another template TRAITS as a parameter.
template <typename BASE, typename STRUCT>
class Traits {
public:
typedef BASE ...
2
votes
3answers
368 views
How to specialize member functions based on class template argument
What the question says. In addition, is it possible to do this inline?
Here is a small example just to give an idea...
template<typename T>
class Foo {
public:
Foo() :z(0.0) {}
void do( ...
1
vote
3answers
319 views
Error C2275 caused by template member function. Is this code wrong?
I think I've run into a (possible) VC6 (I know. It's what we use.) compiler error, but am open to the fact that I've just missed something dumb. Given the following code (It's just an example!):
...
1
vote
3answers
435 views
Determine whether a class has a function
Using a trick (described by Olivier Langlois), I can determine whether a class has a type defined:
template<typename T> struct hasType
{
template<typename C> static char test( ...