473,799 Members | 2,924 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

mixing bound and unbound friends

Hi,

I need to make a templated class A a friend of class B.
My problem: I think I know how to do this for both

1) _one_ specific template instantiation of class A, e.g.:

template<typena me Type, unsigned int xclass A {
public:
void useSomeFunction alityOfB(void);
};
class B {
friend class A<float, 7>;
};

2) _any_ instantiation of class A, e.g.:

template<typena me Type, unsigned int xclass A {
public:
void useSomeFunction alityOfB(void);
};
class B {
template<typena me Type, unsigned int xfriend class A;
};

But I do _not_ know how to mix the two extremes, e.g.
how to make class A a friend of class B only for Type float,
but for any unsigned int x.

Is it possible to express this at all, and if so, how?

Thanks for any help,

Christof
Jul 23 '07 #1
4 1539
On 23 ec, 13:32, Christof Warlich <cwarl...@gmx.d ewrote:
Hi,

I need to make a templated class A a friend of class B.
My problem: I think I know how to do this for both

1) _one_ specific template instantiation of class A, e.g.:

template<typena me Type, unsigned int xclass A {
public:
void useSomeFunction alityOfB(void); };

class B {
friend class A<float, 7>;

};

2) _any_ instantiation of class A, e.g.:

template<typena me Type, unsigned int xclass A {
public:
void useSomeFunction alityOfB(void); };

class B {
template<typena me Type, unsigned int xfriend class A;

};

But I do _not_ know how to mix the two extremes, e.g.
how to make class A a friend of class B only for Type float,
but for any unsigned int x.

Is it possible to express this at all, and if so, how?

Thanks for any help,

Christof
Hi Christof.

You can define intermediate access class which is templated only with
one parameter:

#include <iostream>

template<typena me Tstruct AccessB;

class B {
friend struct AccessB<float>; // Make only AccessB<floatfr iend

private:
static void MethodOfB() { std::cout << "B::MethodOfB() \n"; }
};

template<typena me Tstruct AccessB {
static void useSomeFunction alityOfB()
{
B::MethodOfB();
}
};

template<typena me Type, unsigned int xclass A {
public:
A() { }

void useSomeFunction alityOfB()
{
// This will compile only when Type is float
AccessB<Type>:: useSomeFunction alityOfB();
}
};

int main()
{
// This is OK
A<float, 10af10;
af10.useSomeFun ctionalityOfB() ;

// The following will not compile
// A<double, 10ad10;
// ad10.useSomeFun ctionalityOfB() ;
}

If you uncomment last 2 lines in main(), you will get compile error,
because you will be trying to access private member of B. It is a bit
obscure, but maybe it could help you.
Jul 23 '07 #2
On 23 ec, 14:07, Ondra Holub <ondra.ho...@po st.czwrote:
Hi Christof.

You can define intermediate access class which is templated only with
one parameter
However this way you will provide a "backdoor" to class B - anyone may
use AccessB to access private method of B.

Jul 23 '07 #3
Ondra Holub schrieb:
On 23 ec, 14:07, Ondra Holub <ondra.ho...@po st.czwrote:
>Hi Christof.

You can define intermediate access class which is templated only with
one parameter

However this way you will provide a "backdoor" to class B - anyone may
use AccessB to access private method of B.
Hi Ondra,

thanks, good idea. However, quite some effort to just restrict access
to its minimum. Thus, if there is no direct way to express this, I'll
probably just go the unbound friend approach, accepting that access is
not as much restricted as it could.

Cheers,

Christof
Jul 23 '07 #4
I have another idea:

You can define templated method in B, which takes as parameter Type:

class B
{
template<typena me T>
static void Method()
{
// Here should be some static assertion
// ...
}
};

Specialize Method() only for template parameter float:

template<>
void AAA::Method<flo at>()
{
// Do what you need
// ...
}

For all types but float it should stop compilation on static assertion
(which has to be searched on web, I do not remember, how is it made).
But for float there is another specialization, so it will not stop on
static assert.

Jul 23 '07 #5

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

Similar topics

19
4112
by: James Fortune | last post by:
I have a lot of respect for David Fenton and Allen Browne, but I don't understand why people who know how to write code to completely replace a front end do not write something that will automate the code that implements managing unbound controls on forms given the superior performance of unbound controls in a client/server environment. I can easily understand a newbie using bound controls or someone with a tight deadline. I guess I need...
0
3014
by: colleen1980 | last post by:
Hi: There are two textboxs in my main form. One is bound and another is unbound. There is no entry in the unbound textbox as values come into automatically after entering some information in the subform. My question is how to i pass values from unbound textbox to bound textbox every time when the value change in unbound textbox i need to change the value in the bound textbox. When the form load there is already value in the bound textbox...
0
515
by: colleen1980 | last post by:
Hi: There are two textboxs in my main form. One is bound and another is unbound. There is no entry in the unbound textbox as values come into automatically after entering some information in the subform. My question is how to i pass values from unbound textbox to bound textbox every time when the value change in unbound textbox i need to change the value in the bound textbox. When the form load there is already value in the bound textbox...
1
528
by: colleen1980 | last post by:
Hi: There are two textboxs in my main form. One is bound and another is unbound. There is no entry in the unbound textbox as values come into automatically after entering some information in the subform. My question is how to i pass values from unbound textbox to bound textbox every time when the value change in unbound textbox i need to change the value in the bound textbox. When the form load there is already value in the bound textbox...
0
9685
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
9538
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10249
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
10025
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
9068
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...
0
6804
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
5461
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...
2
3755
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2937
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

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.