473,666 Members | 1,977 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

STL custom mem_fun

First, I describe my setup in 3 points. Then I describe what I want to do,
and describe the error I get.

1) I have a container GTTable container pointer to data (class GT *).

2) I made a template class based on mem_fun1, which in my version accepts 2
arguments in each call: one that is variable on each call (VA, typically
coming from the above container) and one that is fixed on each call (FA,
kind of constant provided by the user):

template<class R, class T, class VA, class FA>
class mem_fun1_arg_t : binary_function <T*, VA, R>
{
public:
explicit mem_fun1_arg_t( R (T::*p)(VA va, FA fa), FA fa) : pmf(p),
arg(fa) {}
R operator()(T* p, VA va) const {return (p->*pmf)(va, arg);}
private:
R (T::*pmf)(VA va, FA fa);
FA arg;
};

3) I paired the above template class with the following template function:

template<class R, class T, class VA, class FA>
inline static mem_fun1_arg_t< R, T, VA, FA> mem_fun1_arg(R (T::*p)(VA va, FA
fa), FA fa)
{
return mem_fun1_arg_t< R, T, VA, FA>(p, fa);
}

What I want to do is to find an element in GTTable that matches another
object's predicate, while providing a constant as the second argument during
the calls. Each call within the STL algorithm should look like:

ptrObject->Pred2(ptrGT, k)

Given ptrObject is of type "class CSomeClass", I use:

find_if(GTTable->begin(),
GTTable->end(),
bind1st(mem_fun 1_arg(&CSomeCla ss::Pred2, k), ptrObject));

However, the compiler keeps complaining the same 7 errors in a row:

c:\program files\microsoft visual studio\vc98\inc lude\functional (158): error
C2248: 'first_argument _type': cannot access public typedef declared in class
'binary_functio n<CSomeClass *,GT const *,bool>'
c:\program files\microsoft visual studio\vc98\inc lude\functional (24): see
declaration of 'first_argument _type'
GTManager.cpp(3 96): see reference to class template instantiation
'binder1st<mem_ fun1_arg_t<bool ,CSomeClass,GT const *,int>>' being compiled

I tried another test with the standard mem_fun1 (derived from
binary_function ) in order to verify if it was compiling:

find_if(GTTable->begin(),
GTTable->end(),
bind1st(mem_fun 1(&CSomeClass:: Pred1), ptrObject));

and it works (the compiler does not display any error message).

I wonder what is wrong in my template pair?
Is it my compiler? (MSVS6)

Note: I have the equivalent templates, adapted for unary_function, and there
no error.

Thanks for any help.
Jul 22 '05 #1
2 2314
On Tue, 10 Feb 2004 10:54:18 -0500 in comp.lang.c++, "Maitre Bart"
<le*****@cae.co m> was alleged to have written:
template<cla ss R, class T, class VA, class FA>
class mem_fun1_arg_t : binary_function <T*, VA, R>


Try:
class mem_fun1_arg_t : public binary_function <T*, VA, R>
~~~~~~

Jul 22 '05 #2

"David Harmon" <so****@netcom. com> wrote in message
news:40******** *******@news.we st.earthlink.ne t...
On Tue, 10 Feb 2004 10:54:18 -0500 in comp.lang.c++, "Maitre Bart"
<le*****@cae.co m> was alleged to have written:
template<cla ss R, class T, class VA, class FA>
class mem_fun1_arg_t : binary_function <T*, VA, R>


Try:
class mem_fun1_arg_t : public binary_function <T*, VA, R>
~~~~~~


....

Thanks!
Jul 22 '05 #3

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

5
4928
by: Old Wolf | last post by:
I have a member function that acts on an object. I would also like to have a member function that acts on a container of such objects, using std::for_each. I tried: #include <algorithm> #include <functional> struct bar { template<typename T> void foo(T const &); template<typename InIt> void foo(InIt begin, InIt end)
2
1989
by: Robbie Hatley | last post by:
I've got a function that I use a lot when making utility programs that need to do the same thing to every directory in a tree. Its prototype is: unsigned long int CursDirs (void Func(void)); This just applies the fuction Func to every subdirectory of the current directory. It works fine when I pass it pointers to regular void-void functions.
9
2810
by: Mr X | last post by:
Can anyone tell how to fix the compile error for the program below? #include "iostream.h" #include <vector> #include <algorithm> #include <functional> #include <list> using namespace std;
13
5914
by: Ioannis Vranos | last post by:
What is the exact difference between mem_fun and mem_fun_ref, since in all examples I looked at, they are used in exactly the same way? -- Ioannis Vranos http://www23.brinkster.com/noicys
4
3110
by: ShaneG | last post by:
We have ptr_fun to handle functions, mem_fun to handle member functions that will be called through a pointer, and mem_fun_ref to handle member functions that will be called through a reference. First, why do we need to have seperate mem_fun/mem_fun_ref? The first returns a mem_fun_t, and the second a mem_fun_ref_t. But the only difference between mem_fun_t and mem_fun_ref_t is that they have different operator() methods. But since...
4
2593
by: joseph cook | last post by:
I am getting a compile error on any compiler I try, so I know I have an error here. Can anyone see it? //includes class Foo { public: Foo(int a){m_hi = a;} int hi(){return m_hi;}
1
1629
by: subramanian100in | last post by:
Consider the following program: #include <iostream> #include <string> #include <list> #include <algorithm> using namespace std; class Test
8
6343
by: flopbucket | last post by:
Hi, I am having some problem using std::bind1st() and mem_fun. I want to bind member function calls to some kind of functor so it can be called later. The following works fine for me: class Foo {
1
1421
by: subramanian100in | last post by:
Suppose I have class WordAndLineNumbers { public: void print( ); // other member functions private: // data members
1
1810
by: jonnyothan | last post by:
The following code isn't producing expected results: class Selectable { bool IsSelected() const; }; class Unit : public Selectable { };
0
8871
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
8781
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
0
8640
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
7386
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
6198
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
5664
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
4198
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
4369
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
2771
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.