A pointer to a member function of a C++ class.

learn more… | top users | synonyms

0
votes
2answers
36 views

error: cannot convert 'void (CApp::*)()' to 'void (*)()' for argument '1' to 'void Mix_HookMusicFinished(void (*)())'

I'm trying to create a C++ application using SDL and SDL_Mixer for audio, and am trying to follow this tutorial. However, using SDL_Mixer's Mix_HookMusicFinished() isn't working, giving the error: ...
1
vote
1answer
105 views

C++11: pointers to member function using std::function::target()

I know this is already a long discussed topic, but I couldn't yet find an answer that satisfies me. Question in short: even using the C++11's function::target() capabilities, is it not possible to ...
0
votes
1answer
104 views

C++11 - What is wrong with this use of decltype function pointer?

While trying to implement a Delegate-class using variadic templates I ran into a problem I'm unable to solve: /// -------------------------------------- /// @thanks God /// Steve ...
2
votes
1answer
80 views

convert type int(C::*)(int, char) to type int(int, char)

I have a class: struct C { int F(int, char) { return 0; } }; and I need to create an std::function, which will call the C::F function for a variable c: C c; std::function<int(int, char)> ...
1
vote
1answer
55 views

Member Function Pointers in VxWorks

I'm writing C++ for a VxWorks application. Since VxWorks is C-based, functions that take functions pointers as arguments are not compatible with C++'s member function pointers. I have a class ...
0
votes
0answers
84 views

How to get in C++ a function pointer to a member function with bound variables?

I would like to call a function g (from a 3rd party library) that takes as input a pointer to a function f. This function pointer is such that f itself takes some arguments. As my function f depends ...
2
votes
4answers
69 views

Pointer to member function of base class error [closed]

Can some one please help me identify where i am going wrong? I am trying to use function pointers to a base class function error C2064: term does not evaluate to a function taking 0 arguments on ...
0
votes
2answers
184 views

c++ no matching function for call to base-class method from derived-class

I got a little confused as gcc dropped an error with the message error: no matching function for call to ... note: candidates are ... So I did a wrong function call as it seems to be. Here is what ...
3
votes
2answers
69 views

c++ template usage with member function pointer

The below simply does not compile and I cannot fix it. Hope a good soul can make me understand how to fix this example. thanks in I try to compile: # make g++ -c -o client.o client.cpp ...
2
votes
1answer
124 views

Calling a member function pointer on a smart pointer

When dealing with class member function pointers, we can call a function on an object instance with the following syntax: struct X { void foo(); }; X x; // Instance auto f = ...
0
votes
2answers
89 views

C++ Using Pointers within a Structure (Struct)

I am trying to create a program that asks a user how many babies they have, gather input about each baby, and then displays it on the console. I am 90% of the way there but I am stuck. The ...
1
vote
1answer
70 views

C++ calling a member function from a pointer is calling memory access violations when arguments are introduced

Im writing a server using Winsock2. All the data received is in string form. I've got a string parser which can pull a method name and the arguments from a method signature given in string form. So ...
0
votes
1answer
78 views

Undefined symbol, access to a member function with a pointer C++

I'd like to access to the member functions of my main class with a pointer, from a class in a lib. I have access to the variables public in my main class. But when I try to access to the member ...
3
votes
2answers
109 views

Is it safe to upcast a function pointer?

I have base classes Object and an Event class Object { //... }; class Event { }; And a typedef for a function pointer typedef void (Object::*PF) (Event*); And an unrelated class which stores ...
0
votes
0answers
131 views

Calling Activex Function from Javascript with char * pointer as parameter

I have created an Activex control for winsock communication. Now, I have inserted this object in a html webpage. I am trying to call fucntions of this Activex control, I am able to call functions ...
2
votes
2answers
132 views

C++ - is it possible to extract class and argument types from a member function type in a template?

I would like to wrap member functions that conform to the type 'void (ClassType::Function)(ArgType)' with a templated class. Later, I want to pass an instance of ClassType to an instance of this ...
0
votes
4answers
81 views

Member calling inline member function through function pointer, will that be inlined?

I have a set of arithmetic-only functions, whose calls are not determined at the compilation but at run time. I intended to create a array of pointers to all of them, and to handle the call of them ...
1
vote
1answer
257 views

C++ Map of string and member function pointer

Hey so I am making a map with string as the key and a member function pointer as the value. I can't seem to figure out how to add to the map, this doesn't seem to be working. #include ...
2
votes
3answers
94 views

template function taking argument function pointer to a class method

I have a simple class as mentioned below. typedef mytype int; typedef mytype2 float; class A { . . void run (mytype t) { .... do something with t ..... } . . } I have ...
1
vote
2answers
59 views

Pointer to member function syntax when declaring a template

This is what I try to achieve: class MyClass { public: template<typename T> void whenEntering( const std::string& strState, T& t, ...
0
votes
1answer
335 views

Function pointer of a non-static member function of a class

I want to define a member function in class and use its pointer. I know that I can use static member function but the problem with it is that I can only access the static members of the class. Is ...
2
votes
2answers
137 views

Error in using unique_ptr with member function pointer

I have a class as below class A { public: A(int key) : m_key(key) {} int Key() const {return m_key;} private: int m_key; }; I test using unique_ptr with member function ...
5
votes
2answers
168 views

Pointers to members representations

I'm trying to make some callbacks from member functions and everything was ok until I tried to use a template class derived from 2 classes as callback object when I got the following error: error ...
3
votes
2answers
88 views

&decltype(obj)::member not working

Why is does this not work (Visual C++ 2012 Update 1), and what is the proper way to fix it? #include <boost/lambda/bind.hpp> namespace bll = boost::lambda; struct Adder { int m; ...
0
votes
1answer
82 views

How to pass member functions to composition's member that takes function pointers?

I have the below class that yields this error for the lines I commented: Description Invalid arguments 'Candidates are: Eigen::Matrix Forward_Euler(double ()(double), double ()(double), double ...
3
votes
3answers
74 views

How to assign method member pointer of a subclass?

My problem is a bit complicated. I have one class (e: Component) which have Ports objects. When a Component create a Port object, it pass one of its methods to the Port constructor. Methods ...
0
votes
1answer
52 views

Function pointer in Ruby that doesn't violate access rules

In C++ I can do this: (condition ? sin : cos)(0.5); or typedef std::deque<int> T; (T().*(condition ? &T::push_back : &T::push_front))(1); What would be an equivalent of this in ...
4
votes
1answer
102 views

Pointer to function member and non-member

Abstract I have a class that stores a optimization problem and runs a solver on that problem. If the solver fails I want to consider a sub-problem and solve using the same solver (and class). ...
1
vote
2answers
71 views

C++ Call Member Function Within An Object of an Object

I have a C++ class which, in short, has a declaration which looks like this: class Pico { ... Document document; // Custom Document class ... } Later I call one of the public member functions ...
3
votes
2answers
164 views

How to store templated objects in an STL container and member function call

Suppose you have a class like template<class T> struct A { void foo() { // Need access to "T" here typedef typename someTrait<T>::someType T2; } }; and you would like to ...
0
votes
3answers
175 views

C++ Function Pointers to an Object

I'm not sure if this is possible in C++. I know you can pass a pointer to a function or static member function as a parameter. I want a function pointer for a specific object, so that when the ...
0
votes
2answers
68 views

FunktionPointerArray in Singleton

I try to implement an array of function pointers in an singleton owning a thread. In the thread function I get an error, telling me that a member has to be relative to an object. More in the ...
1
vote
2answers
157 views

differentiating between a function pointer and member function pointer

I this code, which appears to work: template <typename C> class class_ { protected: std::map<std::string, native_function> methods; public: template <typename F, F fn> ...
0
votes
1answer
146 views

C++ GoogleTest using fixture - function pointer definition not accessible

I implemented a googletest, with fixture class UnitTest_solver. Implementation for the fixture is the following. It contains helper functions class UnitTest_solver : public ::testing::Test { ...
0
votes
3answers
73 views

Micro optimization - compiler optimization when accesing recursive members

I'm interested in writing good code from the beginning instead of optimizing the code later. Sorry for not providing benchmark I don't have a working scenario at the moment. Thanks for your attention! ...
0
votes
1answer
104 views

Pointer to function to member function

I want to use a library (nlopt) that has a function set_min_objective which takes a pointer to a numerical function myfunc and find its minimum. I would like to create a class that will contain a ...
2
votes
1answer
138 views

Using Setters and Getters in AlgorithmInfo::addParam for Algorithm inheritance

I am working on creating my own algorithm inheriting from cv::Algorithm using the reference from the OpenCV docs. I have created my own classes that inherit from cv::Algorithm with success but I am ...
0
votes
0answers
104 views

How to initialize member function pointer INSIDE class

I dont know why this is giving me error (error C2276: '&' : illegal operation on bound member function expression) class A{ Color3 (*m_rayTracedColorFunction)(int, int); // func pointer ...
0
votes
0answers
168 views

Convert Member Function Pointer to IntPtr

I want to Use a Managed Delegate in a Native Class. It seems I should using Marshal::GetDelegateForFunctionPointer. I write my function pointer as is: typedef void (CMYClass::*FUNCP)(int i); then ...
3
votes
1answer
74 views

What is the type of a constant method pointer?

Given a class class C { public: int f (const int& n) const { return 2*n; } int g (const int& n) const { return 3*n; } }; We can define a function pointer p to C::f like this. int ...
8
votes
4answers
300 views

Why the size of a pointer to a function is different from the size of a pointer to a member function?

Isn't a pointer just an address? Or I'm missing something? I tested with several types of pointers: pointers to any variables is the same (8B on my platform) pointers to functions are the same ...
2
votes
1answer
185 views

Bad practice to use function pointers to members of a class T as parameters in functions of a template class<T>?

First off, sorry for the title. I couldn't really condense what I'm trying to ask into one phrase :( I was reading this post, and it somehow got me thinking on function pointers. Specifically, I was ...
1
vote
4answers
103 views

Trying to avoid repetitively call a function

I have a very simple class definition as follows: #include "../bshttp/controllers.h" #include <iostream> #include <string> class DerivedController : public BS_Controllers { public: ...
1
vote
2answers
100 views

Given a T and function name and type, how can I resolve T::function?

Given an Event struct and an object that implements a function with a specific name and prototype, known by the Event struct, I want to return a pointer or bind to that function. Exactly what it ...
2
votes
2answers
119 views

what is the address of pointer-to-member functions, no virtual and no inherit

I write some testing code, to figure out the address about member function. But the result confuse me. the code is #include <stdio.h> #include <stdlib.h> #include <iostream> class ...
4
votes
4answers
256 views

To pass a pointer to a member function

I have an class with instance functions (or methods?). From within an instance, I try to pass pointers to those functions to a library. The library expects static functions. When I pass my pointers ...
0
votes
1answer
116 views

Should I be using a function pointer? C++ and Objective-C

I am writing a Cocoa application that uses a C++ library that I am also writing. I want the C++ library to be able to call a draw method in the Cocoa application. Specifics - to put it into context, ...
1
vote
2answers
144 views

member function pointer address in shared library

The problem I am trying to solve is to make a list of function names, mapped to the corresponding member function pointers. I was trying to obtain the function pointer directly from the .so file ...
0
votes
3answers
271 views

Does boost::bind make a copy of a member function

Boost::bind documentation states: By default, bind makes a copy of the provided function object. boost::ref and boost::cref can be used to make it store a reference to the function object, rather ...
3
votes
3answers
454 views

How to best pass methods into methods of the same class

I have this C++ class that one big complicated method compute that I would like to feed with a "compute kernel", a method of the same class. I figure I would do something along the lines of class ...

1 2 3 4