The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
38 views

Passing any class member function as parameter

i'm trying to pass a class member function as a parameters this work perfectly when i'm using the folowing code #include <stdio.h> class CMother; typedef int(CMother::*FuncPtr)(char* msg); ...
1
vote
1answer
74 views

wordpress error on line 160 of …wp-includes\class-wp-customize-control.php whilst adding hooks for extra functions

Thanks in advance for any help with this, Error Call to a member function check_capabilities() stuck in a rut with this one! Directory layout: 'Theme folder' functions.php (main directory for ...
11
votes
2answers
140 views

Finding constancy of member function

How can I detect a member function has const modifier or not? Consider the code struct A { int member(); int member() const; }; typedef int (A::*PtrToMember)(); typedef int ...
0
votes
2answers
67 views

Can a class method have different code for each instance of the class?

I want to create a class (eg. Person) with a member function (eg. giveCharity), but I want the contents of that method to be different for each instance of the class, imitating artificial ...
3
votes
4answers
350 views

Whether to go for a member function or friend function when the function is supposed to change state of object?

In the book The C++ Programming Language, by Bjarne Stroustrup, the author introduces a class Matrix which has to implement a function inv(). In section 11.5.1, he talks about two possibilities of ...
0
votes
0answers
42 views

Fatal error: Call to a member function bindParam() on a non-object in [duplicate]

Possible Duplicate: Fatal error: Call to a member function bindParam() Can somebody help me to fix my script because I really dont know what is going wrong. It was working fine untill I ...
4
votes
4answers
750 views

callback from c++ to objective c

I have ViewController in objective-c and most of my code is c++ (.mm). I'd like to setup some callbacks to member functions from obj-c (in c++) and call them from c++. Something like this (it's very ...
1
vote
0answers
180 views

C++: Why is const keyword after parameter list? [closed]

For C++ const member functions, having const after the parameter list is messy: void C::razzmatazz_the_flubber ( int int_arg, // comment about int_arg CatDog &class_arg ) ...
0
votes
1answer
104 views

Improve code readability without performance loss

We have several classes where a call to a member function may change state and sometimes not depending on a boolean with default value. A a; a.set( "foobar" ); assert( a.changed() == true ); ...
0
votes
1answer
121 views

How to add Android debug function (LOGE, LOGW…) in C++ inline member function?

I'm developing Android audio driver. In case I need to add debug function "LOGD" inside constructor Mutex::Autolock::Autolock(Mutex& mutex), which is defined in ...
0
votes
1answer
41 views

Concept of Object, class and member function

So far this is what I understand objects are, I need feedback to know if I'm correct. A class is made up of member functions. A class also defines types like int does. An object is defined by that ...
0
votes
3answers
97 views

Class and Member Function (beginner)

I'm currently reading a c++ book, and I have a few questions. 1) Is void only used to declare a return type in this example? 2) If void causes it NOT to return data to the calling function, why is ...
0
votes
3answers
94 views

Call to a member function test1() on a non-object

I'm still pretty new to php and all but I've been trying to lookup(if it's even possible) to call from a child class to a parent function which executes a different child's function. I've read that ...
2
votes
5answers
308 views

Iterating over the output of a member function in std::for_each

I have a class with an accessor member function that I want to call and apply the result to a functor using std::for_each. I have a working version below that uses a for loop and for_each, but the ...
0
votes
2answers
117 views

Member function binding using boost

I'm trying to set up a system where GUI objects that derive from a GuiObject class can register a Serialiser and Deserialiser so that they can be serialised/deserialised to/from an XML file based ...
5
votes
3answers
361 views

Member template functions cannot be virtual - workaround?

I understand why member template functions cannot be virtual, but I'm not sure what the best workaround is. I have some code similar to this: struct Entity { template<typename It> ...
3
votes
2answers
350 views

Is it safe to use std::bind with boost::signals2?

Is it safe to use std::bind to pass a member function to boost::signals2::signal::connect()? In other words, is boost::bind and std::bind interchangeable? It compiles with VC++ 2010 SP1, but the ...
0
votes
1answer
27 views

Question about 'const' functions, c++

I understand that when I declare a member function as const I actually say that I will not change the class. My question - does 'class' refer to (*)this instance or to the class in general? For ...
4
votes
2answers
603 views

Is qualified name in the member function declaration allowed?

This code is accepted by MSVC9.0. My question is whether it is legal according to the standard (the old and/or the new one). A quote would be very much welcome, too. class X { void X::f(); };
1
vote
2answers
342 views

How to get Windows thread pool to call class member function?

I want the Windows thread pool (QueueUserWorkItem()) to call my class' member functions. Unfortunately this cannot be done directly by passing a member function pointer as an argument to ...
0
votes
3answers
211 views

C++ classes - how to reference a member function from another member function

I'm very new to c++ classes, so this is probably a really obvious question, but because I'm not familiar with the lingo yet I cant seem to be able to get a correct search term. Anyway, what I am ...
7
votes
5answers
1k views

Member function call in decltype

The following code: struct A { int f(int); auto g(int x) -> decltype(f(x)); }; Fails to compile with the error: error: cannot call member function 'int B::f(int)' without object If I ...
2
votes
7answers
268 views

Do repetitive calls to member functions hurt?

I have programmed in both Java and C, and now I am trying to get my hands dirty with C++. Given this code: class Booth { private : int tickets_sold; public : int ...
12
votes
13answers
824 views

What is the practical use of pointers to member functions?

I've read through this article, and what I take from it is that when you want to call a pointer to a member function, you need an instance (either a pointer to one or a stack-reference) and call it ...