Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

17
votes
3answers
237 views

Non-pointer typedef of member functions not allowed?

After getting an answer to this question I discovered there are two valid ways to typedef a function pointer. typedef void (Function) (); typedef void (*PFunction) (); void foo () {} Function * p = ...
14
votes
2answers
349 views

C++: Pointer to monomorphic version of virtual member function?

In C++, it's possible to get a pointer to a (non-static) member function of a class, and then later invoke it on an object. If the function was virtual, the call is dispatched dynamically depending on ...
12
votes
7answers
4k views

C++ inheritance and member function pointers

In C++, can member function pointers be used to point to derived (or even base) class members? EDIT: Perhaps an example will help. Suppose we have a hierarchy of three classes X, Y, Z in order of ...
11
votes
3answers
184 views

Pointer to a member function in an inaccessible base

The compilation of the next example : class A { public: void foo() { } }; class B : private A { public: using A::foo; }; int main() { typedef void (B::*mf)(); mf func ...
11
votes
6answers
276 views

Is a pointer to a virtual member function valid in the constructor of the base class?

My question is not about calling a virtual member function from a base class constructor, but whether the pointer to a virtual member function is valid in the base class constructor. Given the ...
10
votes
1answer
119 views

C++11: Abstracting over const, volatile, lvalue reference, and rvalue reference qualified member function pointers?

C++03 lets you qualify function parameters as being const, volatile, and/or lvalue references (&). C++11 adds one more: rvalue references (&&). Furthermore, C++ lets you overload ...
10
votes
1answer
242 views

Member function pointer

If the following from the C++ FAQ Lite is true: "a function name decays to a pointer to the function" (as an array name decays to a pointer to its first element); why do we have to include the ...
9
votes
2answers
207 views

const-correctness and the safe bool idiom

I have another question related to the safe bool idiom: typedef void (Testable::*bool_type)() const; // const necessary? void this_type_does_not_support_comparisons() const {} // const ...
8
votes
5answers
3k views

How to typedef a pointer to method which returns a pointer the method?

Basically I have the following class: class StateMachine { ... StateMethod stateA(); StateMethod stateB(); ... }; The methods stateA() and stateB() should be able return pointers to stateA() and ...
7
votes
2answers
176 views

D Analogue to C++ member-function-pointers, not necessarily delegates

I have been learning D, and am in particular very excited for it's Generic programming capabilities. Delegates are wonderful, and apparently they have completely replaced member-function-pointers, so ...
6
votes
2answers
158 views

C++: Using function pointers with member functions

I'm trying to pass a function to another function as a parameter, and they both happen to be member functions of the same class. I'm getting a weird error and I can't figure out what the problem is. ...
6
votes
3answers
234 views

How to invoke pointer to member function when it's a class data member?

struct B { void (B::*pf)(int, int); // data member B () : pf(&B::foo) {} void foo (int i, int j) { cout<<"foo(int, int)\n"; } // target method }; int main () { B obj; // how to ...
6
votes
3answers
184 views

Table of function pointers within a class C++

I'm trying to make a table of function pointers within a class. I haven't been able to find any examples of this online, most involve using member function pointers outside of their class. for ...
5
votes
3answers
211 views

Function member pointer with private base

The following code yields a compile time error: 'base::print' : cannot access private member declared in class 'base_der' However, I have made the member public in the derived class. Why doesn't ...
5
votes
1answer
513 views

C++0x function<>, bind and members

I tried to follow Bjarne Stroustups explanation of the function template. I specifically played with the interchangability of c-function-pointers, functors, lambdas and member-function-pointers Given ...
5
votes
4answers
2k views

Passing member function pointer to member object in c++

I have a problem with using a pointer to function in C++. Here is my example: #include <iostream> using namespace std; class bar { public: void (*funcP)(); }; class foo { public: bar ...
5
votes
2answers
2k views

boost::bind & boost::function pointers to overloaded or templated member functions

I have a callback mechanism, the classes involved are: class App { void onEvent(const MyEvent& event); void onEvent(const MyOtherEvent& event); Connector connect; } class ...
5
votes
3answers
405 views

Function pointers to member functions in C++

I need to call a method that expects a function pointer, but what I really want to pass to it is a functor. Here's an example of what I'm trying to do: #include <iostream> #include ...
5
votes
3answers
1k views

Pointers to virtual member functions. How does it work?

Consider the following C++ code: class A { public: virtual void f()=0; }; int main() { void (A::*f)()=&A::f; } If I'd have to guess, I'd say that &A::f in this context would ...
4
votes
2answers
167 views

C++0x lambda wrappers vs. bind for passing member functions

This is basically a question about the readability, style, performance of 2 different approaches to creating/passing a functor that points to a member method from within a class constructor/method. ...
4
votes
4answers
180 views

c++ member function pointer problem

I'm new to c++ . I want to know about object pointer and pointer to member function . I wrote a code which is following: code : #include <iostream> using namespace std; class golu { int i; ...
4
votes
6answers
119 views

passing member functions as parameters / c++

I would like to implement, in c++, a class b where it would be possible to do some kind of iteration through a member set encapsulating the type of that iterator. Like: ...
4
votes
1answer
428 views

class template partial specialization parametrized on member function return type

The following code, which attempts to specialize class template 'special', based on the return type of member function pointer types, results in a compile error with VC9: template<class F> ...
4
votes
1answer
194 views

Is it safe to “upcast” a method pointer and use it with base class pointer?

Let's say I have a pointer type that can hold the address of a base class method. Can I assign the address of a subclass method to it and expect it to work correctly? In my case I'm using it with a ...
4
votes
3answers
136 views

Question about member function pointers in a heirarchy

I'm using a library that defines an interface: template<class desttype> void connect(desttype* pclass, void (desttype::*pmemfun)()); and I have a small heirarchy class base { void foo(); ...
4
votes
5answers
654 views

How to define a general member function pointer

I have created a Timer class that must call a callback method when the timer has expired. Currently I have it working with normal function pointers (they are declared as void (*)(void), when the ...
4
votes
2answers
367 views

specialization on const member function pointers

I am trying to specialize some utility code on const member functions, but have problems to get a simple test-case to work. To simplify the work i am utilizing Boost.FunctionTypes and its ...
3
votes
2answers
63 views

Class member function pointer as a class member

// class class MyClass { public: void doIt() const { cout << "It works!" << endl; } void(MyClass::*fPtr)() const; }; // main MyClass *t = new MyClass; // store function adress ...
3
votes
4answers
120 views

c++ store a pointer to a member function of unknown class

I want to store a pointer to an object and a pointer to it's method of known signature. If I know the class then this pointer have type: int (MyClass::*pt2Member)(float, char, char) But how can i ...
3
votes
3answers
177 views

Cast member function for create_pthread() call

I want to stop the warning server.cpp:823: warning: converting from 'void* (ClientHandler::)()' to 'void ()(void)' in the call: pthread_create(th, NULL, (void* (*)(void*)) ...
3
votes
3answers
148 views

C++ Pointer to virtual function

If you have a struct like this one struct A { void func(); }; and a reference like this one A& a; you can get a pointer to its func method like this: someMethod(&A::func); Now ...
3
votes
3answers
188 views

Pass any member function of any class as a Callback function

I'm working on a OpenGL menu which contains some buttons. I want to be able to associate an action (member function (with a fixed signature) of any class!) to a button which gets executed when the ...
3
votes
2answers
238 views

How to get a pointer to a COM method for hooking?

I know this seems like a over-answered question but this one is different. I have this ActiveX object which exports some methods. I need to set a hook on one of its methods, namely Func1, I know how ...
3
votes
6answers
470 views

C++: Class member functions as event callbacks

I'm trying to add a simple messaging system to my project, where events can be invoked by a function, which will lead to all callbacks registered to that event being called. Now, the logical way to ...
3
votes
2answers
159 views

get function ptr to member function of instanced class?

class gfx { void resize(int x, int y); } gfx g; can i cast g.resize to a 'void (*)(int, int)' somehow?
3
votes
4answers
329 views

Start a thread using a method pointer

I'm trying to develop a thread abstraction (POSIX thread and thread from the Windows API), and I would very much like it to be able to start them with a method pointer, and not a function pointer. ...
3
votes
1answer
59 views

How can you get pointer to a templated member function from a template type?

The following code does not compile ... any idea why? Is this illegal C++? class Handler { public: template <typename T> void handle(T t) {} }; class Initializer { public: template ...
3
votes
5answers
240 views

Problem with pointer to a member function

In code below (please see comment): #include "stdafx.h" #include <iostream> using std::cout; struct Base { void fnc() { cout << "Base::fnc()"; } }; struct Impl { void* ...
3
votes
7answers
389 views

Object-Oriented Callbacks for C++?

Is there some library that allows me to easily and conveniently create Object-Oriented callbacks in c++? the language Eiffel for example has the concept of "agents" which more or less work like this: ...
3
votes
2answers
170 views

How to call a pointer to method from another method

I had this problem some time ago and I gave up but lately it returned. #include <iostream> class element2D; class node2D { public: void (element2D::*FunctionPtr)(); void otherMethod() ...
3
votes
2answers
767 views

How to get address of member function for local class defined in function (C++)

I am trying to do the following: Obtain the address of a member function from a class that was locally defined within a function. class ConnectionBase { }; template class<EventType, SinkType> ...
2
votes
3answers
89 views

Event Callback Daemon

I am working on an event daemon in C++ that I would like to use member function callbacks. Basically an event queue would collect events which the daemon continuously services. There is a base class ...
2
votes
2answers
136 views

C++ object function to function pointer

I'm using a C library inside my C++ app. The library has a function with the following signature: void awe_webview_set_callback_js_callback(awe_webview* webview, void (*callback)(awe_webview* caller, ...
2
votes
4answers
233 views

casting member function pointer

I need to use a member function pointer that takes in an argument of base class that used in other code. Well, simply I want do to [something] like the example below. This code works fine, but I ...
2
votes
2answers
126 views

Storing and later calling member function of unknown class

I am trying to create a threadpool that can run functions from unknown classes. I do not wish to have to create non-members as a proxy. I have managed to create a working pool & workerthread class ...
2
votes
3answers
131 views

How to call a function using pointer-to-member-fucntion

I have a class: class A { void test_func_0(int); void run(); typedef void(A::*test_func_t)(int); struct test_case_t{ test_func_t test_func; } test_case[100]; }; Now I ...
2
votes
2answers
114 views

assigning c++ function pointers to member functions of same object

Sorry if it has been asked before, but how do I get the function pointer assignments (and maybe the rest) in test.calculate to work? #include <iostream> class test { int a; int b; ...
2
votes
2answers
65 views

Calling a method on a map from another method

// Penguin.h #include <map> #include <iostream> class Penguin { typedef void (Penguin::*PenguinMet)(); std::map<int, PenguinMet> Methods; void Move(); int p; ...
2
votes
4answers
193 views

mem_func and virtual function

I have the following classes: class A { public: virtual void myfunc(unsigned char c, std::string* dest) = 0; }; class B : public class A { public: virtual void ...
2
votes
4answers
132 views

Use C structs only and stay OOPy?

Say you have: struct c_struct { int value; /* other stuff */ void (* dump)(); }; and you'd like to, at some point: c_struct_obj->dump(); I assume there's no way you could instantiate ...

1 2 3