Tagged Questions

8
votes
2answers
163 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, …
2
votes
4answers
155 views

Clearest way to code structarray map functor in C++

This is a poll for opinions on the most readable way to do something -- whether to use a C++ pointer-to-member, a byte offset, or a templatized functor to define "select member X from structure foo". …
2
votes
5answers
286 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 …
0
votes
7answers
300 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 …
2
votes
2answers
306 views

Casting between void * and a pointer to member function

Hello Stackoverflow, I'm currently using GCC 4.4, and I'm having quite the headache casting between void * and a pointer to member function. I'm trying to write an easy-to-use library for binding …
1
vote
6answers
344 views

Overloaded member function pointer to template

Hi! 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 …
0
votes
2answers
145 views

C++/CLI Pointer to Member

What are the various options to implement a pointer-to-member construct in C++/CLI? I have implemented some 2D geometry algorithms which perform some actions based on X and Y co-ordinates. I find …
1
vote
3answers
194 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 …
2
votes
1answer
504 views

C++: How to get the address of an overloaded member function?

Hi, I'm trying to get a pointer to a specific version of an overloaded member function. Here's the example: class C { bool f(int) { ... } bool f(double) { ... } bool example() { // I …