Tagged Questions

12
votes
5answers
216 views

Crazy C++ template - A template to access individual attributes of a class

I am a novice C++ programmer, but I thought I know enough about C++ until today when I came across code like this at work and failed to understand how it actually works. class Object { }; template ...
8
votes
3answers
330 views

I can not get access to pointer to member. Why?

Consider the following code: template<class T, class F> struct X {}; template<class T, class F, T F::* m> struct Y {}; struct Foo { int member; typedef X<int, ...
5
votes
1answer
262 views

Why can't I downcast pointer to members in template arguments?

If I make a pointer-to-base-member, I can convert it to a pointer-to-derived-member usually, but not when used within a template like Buzz below, where the first template argument influences the ...
5
votes
1answer
192 views

How to create pointer-to-mutable-member?

Consider the following code: struct Foo { mutable int m; template<int Foo::* member> void change_member() const { this->*member = 12; // Error: you cannot assign to a ...
5
votes
4answers
309 views

How to save pointer to member in compile time?

Consider the following code template<typename T, int N> struct A { typedef T value_type; // OK. save T to value_type static const int size = N; // OK. save N to size }; Look, it is ...
5
votes
6answers
2k views

Overloaded member function pointer to template

I'm try to store member function pointers by templates like this. (This is a simplified version of my real code) template<class Arg1> void connect(void (T::*f)(Arg1)) { //Do some stuff ...
3
votes
1answer
221 views

Friend Syntax for Ptr-to-member template parameter

Okay, so I believe this is a pure c++ mucky syntax question. I have a class defined with a ptr-to-member as one of its template parameters: template <class T, T *T::*hook> class My_list { I ...
3
votes
4answers
204 views

Is there pointer to member traits or something like this?

Based on other my question. Consider the following code template<typename T, int N> struct A { typedef T value_type; // save T to value_type static const int size = N; // save N to size }; ...
2
votes
2answers
226 views

Template type deduction for a pointer to member function

I have a very similar problem to that presented by Morpheus, in the following question: Overloaded member function pointer to template The solution proposed by Richard Corden requires the user to ...
2
votes
5answers
1k views

Callback in C++, template member? (2)

The following callback class is a generic wrapper to "callable things". I really like its API, which has no templates and is very clean, but under the hood there is some dynamic allocation which I was ...
1
vote
2answers
69 views

Convert vector to map with pointers to members?

I'm having trouble understanding why the code below #include <string> #include <vector> #include <map> using namespace std; struct Student { int id; string name; }; ...
1
vote
7answers
954 views

Callback in C++, template member?

Following code does NOT work, but it expresses well what I wish to do. There is a problem with the template struct container, which I think SHOULD work because it's size is known for any template ...
1
vote
3answers
730 views

Accessing a template base classes function pointer type

I have a class that I've been provided that I really don't want to change, but I do want to extend. I'm a pattern and template newbie experimenting with a Decorator pattern applied to a template ...
0
votes
2answers
71 views

CRTP-related compiler error on pointer-to-a-member-function default value

Hi there, While making a CRTP-based generic wrapper to call arbitrary library functions, I've encountered a problem which I have trouble understanding. Here is a very simplified code to illustrate ...
0
votes
1answer
163 views

Calling a member function from a member function templated argument

Given the following code which I can't get to compile. template < typename OT, typename KT, KT (OT::* KM)() const > class X { public: KT mfn( const OT & obj ) ...