0
votes
1answer
19 views
friend function declared inside befriended class, GCC does not compile
Hello,
I've got following code:
File: Foo.h
class Foo {
friend void Bar();
};
File: Foo.cpp
void Bar() {};
File Test.cpp
#include "Foo.h"
int main(void) {
Bar();
…
0
votes
1answer
35 views
How to get the name of a Facebook friend?
Hi,
I'm just playing around with the Facebook API in C# (Windows Form App), and I'm struggling to figure out how to get the name of a selected friend. I already have the uid for t …
0
votes
1answer
200 views
FBML multi friend selector in fb:dialog
Hey Guys,
Is there a way to show the multi friend selector widget (fb:multi-friend-selector) in an fb:dialog?
I have a button, on selecting which I would like to show the friend …
0
votes
1answer
29 views
friend inviter api from opensocial
is there any api for pulling contacts of a user from many different site, so they can be invited on the site from a user by a user?
btw im not talking about just one site api, i …
1
vote
4answers
55 views
Erasing a vector element by key
ive defined the following and filled it with elements:
vector <vector<double> > my_vector;
but i want a delete an element with a specific key...
my_vector.erase(int …
16
votes
11answers
3k views
Why does C# not provide the C++ style ‘friend’ keyword?
The C++ friend keyword allows a class A to designate class B as it's friend. This allows Class B to access the private/protected members of class A.
I've never seen or read anyth …
1
vote
5answers
122 views
pimpl idiom and template class friend
I'm trying to use the pimpl idiom to hide some grungy template code, but I can't give derived classes of the body class friend access to the handle class. I get an error C2248 fro …
2
votes
2answers
105 views
Template friendship
I'm trying to access protected variables of a template class with different template parameters. A friend declaration with template parameters is giving the following error:
multi …
0
votes
2answers
34 views
What is “AllInternalsVisible” parameter of assembly:InternalsVisibleTo attribute?
Hi,
My intellisense is coming up with a boolean named parameter "AllInternalsVisible=" in an [assembly:InternalsVisibleTo("AssemblyName")] declaration. Just position the cursor …
6
votes
8answers
1k views
Is there a way to simulate the C++ ‘friend’ concept in Java?
I would like to be able to write a Java class in one package which can access non-public methods of a class in another package without having to make it a subclass of the other cla …
1
vote
1answer
74 views
Friend class and all its descendants
Hello, suppose that I have a class A with several subclasses (B, C, and D). I need B C and D to access some protected members from a class E. Is it possible to make B, C and D frie …
2
votes
2answers
82 views
XML Serialize Friend Classes in VB.net
I have a few classes (about 15 or so) in VB.net (2005) that I would like to be able to serialize to xml. Unfortunately they are labeled as friend classes and cannot be exposed outs …
16
votes
22answers
2k views
when should you use ‘friend’ in c++ ?
I have been reading through the c++ faq and was curious about the friend declaration. I personally have never used it howevever in the interest of exploring the language I was wond …
0
votes
4answers
154 views
Friend functions
For the example under Friend Functions
How is the following true?
"Notice that neither in the declaration of duplicate() nor in its later use in main() have we considered duplicat …
5
votes
7answers
571 views
friend class/function in c++
I see a lot of people recommending a function/class to be made a friend of another class here in SO though there are other alternatives. Shouldn't friend be sparingly used in C++? …
