The tag has no wiki summary.

learn more… | top users | synonyms

-1
votes
0answers
8 views

Why my fb social plugin shows only friends of mine? [closed]

i know that is a question of privacy of facebook's terms. but my questio is, why MY social plugin shows only friends and some others shows all users? Here is an example, on the bottom of the page, ...
1
vote
1answer
42 views

friend method from a different namespace

I have the following situation. I have a class foo inside my own namespace my_lib: namespace my_lib{ template<typename T> class foo{ T data; public: // blah blah }; } I am trying to ...
1
vote
1answer
35 views

Does Facebook API allow sending and accepting friend requests?

I have tried to comb through the Facebook Developers documentation http://developers.facebook.com/ but haven't been able to answer this question. I would like to be able to send Facebook friend ...
2
votes
2answers
41 views

Using normal and overloaded operator at the same time

I have a class and i overloaded [ operator to use in main. But the problem here is; somewhere in the class in another function. i want to use [ operator like the old style. How can i use them both or ...
1
vote
1answer
36 views

I am losing control and unable to Debug

class Base { private: int nID; friend int fnDeleteBase(Base* base); public: Base( int baseID):nID(baseID) { cout << "Base Constructed with value" << endl; } Base () : ...
0
votes
0answers
9 views

Jomsocial Friends List inside a module

It seems very hard to find information on this on the internet so I am sure it must just be something I am missing but have spent a few hours on this. I am currently setting up JomSocial for a music ...
6
votes
2answers
83 views

Why does the Standard prohibit friend declarations of partial specializations?

The C++ standard prohibits friend declarations of partial specializations. (§14.5.3/8): Friend declarations shall not declare partial specializations. [Example: template<class T> class A { ...
0
votes
0answers
32 views

Posting a plain text on friend's wall not working from my app

I am using graph API in my app for communicating to Facebook server. For posting plain text, I am using post request with "userId/feed" API. I am getting "Success" acknowledgement from the server, but ...
0
votes
1answer
67 views

Accessing private variable from a friend class - I believe my syntax is wrong

Okay, so this is a parking ticket application... I'm sure you've all seen/done them before. This one is for C++ and I'm having trouble with getting my class-contained methods to access private members ...
-1
votes
2answers
57 views

C++ variable scope for class friends

I have: class Game... class D3DGraphics... I have a variable of type D3DGraphics called gfx declared in my Game class. I make another few classes: class Font... class Viewport... I make them ...
-3
votes
0answers
42 views

Chosing “Not Now” and “Unfriend” is not working to add people as Followers [closed]

Usually selecting "Not Now" or "Unfriend" would result in people being added to the Follower list. I even get a notification when I unfriend someone that they will remain a follower however in the ...
0
votes
0answers
79 views

Constructor as a friend in C++?

I'm trying to have a constructor of class A as a friend of class B. Example: class A { public: A(int a); private: int a; }; class B { public: B(void); private: int b; void ...
0
votes
0answers
34 views

iOS app + Facebook API: how to send friend request to another app user

I am trying to use Dialog (type 'Friends') to send a friend request to another app user but when I try to send request or accept request from another user then I see: "Something went wrong..." ...
0
votes
1answer
47 views

Hiding library internal class to clients C++: use friend?

I'm trying to develop a networking part in my basic game engine in C++, but I'm faced with a rather strange problem (it is for me). I got a Singleton Networker class that handles the set-up of a ...
2
votes
1answer
48 views

friend class with forward class declaration does not compile

This a basic program to understand how to use friend class in C++. Class xxx has a class yyy object using friend. Since class yyy is defined after class xxx I have declared class yyy using forward ...
0
votes
1answer
75 views

Limiting friend classes [closed]

Is it bad practice to declare a class a friend in order to access a private constructor of another class? The constructor is only meant to be called by the friend. However, the friend has no need to ...
0
votes
0answers
23 views

how to limit amount of friend request a user can send in rails

I have a friendship model setup in my rails application and its working fine my model and controllers include, user model has_many :friends, :through => :friendships, :conditions => "status = ...
0
votes
1answer
46 views

Declare a template function as friend

I have a global function like this: namespace X { namespace Y { template <R, ...T> R foo(T&&... args) { R r(args...); return r; } } } Then in another class A, I want to ...
1
vote
2answers
40 views

Template class with a friend function which is inside a nested namespace

I'm trying to create a template class with a friend function which is inside a nested namespace. It works fine if I remove all the namespaces or if I remove all the templatization. But with both in ...
0
votes
3answers
46 views

How to define a global visibly operator

I wanted to use binary_search on my class and so I defined a operator<. It works when everything is in main file, but when I write the class in another file I got linker error. The simplest ...
0
votes
2answers
37 views

Friend functions and their relationship to the I/O Operators

I've pored over information regarding friend functions and their use. They're able to access encapsulated data within a class while not breaking one of the golden rules of OOP. In purveying various ...
0
votes
1answer
68 views

Facebook FQL PHP - Get Friend's Friendlist?

In FQL/PHP, how to get the friendlist of a friend? I can not find in the Facebook Developer API Documentations also. I used something similar like this: SELECT uid, first_name, last_name FROM user ...
0
votes
1answer
37 views

friend template definition. Include <T> when and where?

I think I just need another set of eyes to find out what I'm doing wrong. This is the error: bfgs_template.hpp:478:5: error: ‘di’ was not declared in this scope bfgs_template.hpp:478:8: error: ‘b’ ...
1
vote
1answer
69 views

Can't Declare friend for Typedef

I have the following : typedef SP<CVPatModel *> VModel; class VLIB_API CVPatModel { public : friend VModel; protected : virtual void Save( char* szFileName ); } void ...
0
votes
1answer
81 views

C++ friend class with same name in different namespaces

I have two classes with the same name in different namespaces. I cannot modify the names of the classes. I want to add a method to one of the class, but I'm not allowed to add this as a public method. ...
0
votes
2answers
37 views

Save Facebook friend pictures to documents rapidly

I don't have any clue what so ever and hence I am giving it up to some one who can assist me a proper way.Actually I have retrieved the Facebook friends details using FQL query,in which the profile ...
0
votes
2answers
49 views

Define friend template method outside namespace

I have code with the following basic structure: namespace A{ template<class T,unsigned DIM> class CMyTable{ ... public: template<class T,unsigned ...
0
votes
1answer
101 views

Facebook api php select friend by id

I want to get the birthday date of a specific friend using facebook api php. I have the friend's id passed from a form with a friend list in te variable $_POST[friend_id]. I'm doing something like ...
0
votes
1answer
104 views

Facebook api php get specific friend profile

I want to know the date of birth of a specific friend. I'm using something like this. Is possible get this friend profile field? $user = $facebook->getUser(); $perms = array('scope' => ...
0
votes
2answers
171 views

Facebook api friends list

I'm using Facebook's javascript SDK to inspect the friends list of users registered in my application. I have this call: FB.getLoginStatus(function (response) { if (response.status == ...
1
vote
5answers
116 views

Allowing a “friend” class to access only some private members

Suppose I have three C++ classes FooA, FooB and FooC. FooA has an member function named Hello, I want to call this function in class FooB, but I don't want class FooC be able to call it. The best way ...
0
votes
1answer
176 views

“invalid use of non-static data member” when accessing a templated class' field through befriended output operator

I get the following error when I try to access a templated class'es field through befriended output operator. Database.hpp: In function ‘std::ostream& ostream(std::ostream&, const Table<T, ...
-1
votes
1answer
49 views

Template and friend operator*

I have template Vector(my own template not STL). And i have problem with friend operator*. The problem is the results are ranodm number not the multiply of integer. #include <iostream> #include ...
0
votes
0answers
60 views

Sending Facebook Friend list to server

I have to send my Facebook friend list from my Cocos2d-x game to my php server. Currently how I'm doing this is sending it through my url. I append 50 friend id's at a time to my url and use the curl ...
1
vote
1answer
69 views

Forward declaration and friend function

Following the question here if I omit the namespace like this: void f(window); class window{ private: int a; friend void ::f(window); }; void f(window rhs){ std::cout << ...
0
votes
2answers
172 views

Parse retrieved Facebook friend details data

I have used FQL query in order to retrieve the friends list at a time: -(void)fetchSaveUserFriendDetails { NSString* query = [NSString stringWithFormat:@"SELECT uid,name,birthday_date FROM user ...
9
votes
0answers
223 views

Partial specialization and friendship [duplicate]

Suppose you have class A like this: template <typename T, typename U> class A; And class B like this: template <typename T> class B; And now you want both classes be friends when T ...
1
vote
0answers
171 views

Post message to Facebook Friends wall on his/her birthday using sdk 3.0 - ios

I am already aware of the fact that we can post to friends wall using Graph API or Feed Dialogue,there are several constraints while doing so: Graph API: We are no longer able to post to other users ...
1
vote
1answer
55 views

template class in enclosing namespace as friend

I have code with the following basic structure namespace my { template<typename> class A; // forward declaration namespace details { template<typename T> class B ...
1
vote
1answer
57 views

friend ref class?

I have a managed class (Parser), and an unmanaged class CParser. Former is exposed from the DLL, for the managed clients (C# world). The core functionality is in unmanaged class (CParser). Since both ...
3
votes
1answer
159 views

templated friend function lookup

The following simple code compiles fine class A { int x[3]; public: A() { x[0]=1; x[1]=2; x[2]=3; } friend int const&at(A const&a, unsigned i) noexcept { return a.x[i]; } ...
2
votes
2answers
248 views

C++ friend function can't access private members

This is supposed to be a string class with a bunch of operators and functions, including two friend functions. And those two cause some trouble for me, because the compiler says that they can not ...
1
vote
1answer
135 views

Template operator overloading implementation outside class header [duplicate]

The following code defined in 'util.h' compiles and links. However when I move the implementation for the operator overloads into 'util.cc', the linker can not resolve the symbols. Is this this ...
-2
votes
1answer
61 views

How come my friend functions can access public stuff?

Below are my code. I have 3 friend functions: #include <iostream> #ifndef MATRIX_H #define MATRIX_H class Matrix { friend Matrix operator++(Matrix&); friend Matrix ...
2
votes
2answers
100 views

How to initialize a static field of which type is a private nested class?

Outer.hpp: class Outer { class Inner { Inner() {} }; static Inner inner; } Outer.cpp (at top-level, e.g. not within a function body): Outer::Inner Outer::inner; I get the following ...
4
votes
1answer
63 views

How to use a class function in C++?

I obtain a error: 'func' does not name a type when a member function func of a class B attempts to return a class C: class A { public: class B { public: C ...
0
votes
1answer
74 views

How to make a member function a friend function in this scenario?

I am a bit confused about how to accomplish the following using friend functions. Say I have a class A whose member function 'f' is to be declared friend to class B. The normal solution would be ...
0
votes
1answer
137 views

C++ Overload Operator as Member and Function at the same time?

C++ Overload Operator as Member and Function at the same time? I am trying to set up operator overloading here. I have no problem with operator+ overloading as friend and member each case. But when I ...
4
votes
1answer
204 views

Decltype and friend functions in Visual Studio vs G++

I was writing some C++ code to do vector math. It is essential just a thin wrapper around a std::array instance. I wanted to overload the non-member begin() function to return an iterator to the ...
0
votes
2answers
50 views

Friend Function, expected Primary Expression before . token

So there are two classes in separate header files Customer. h using namespace std; #include <iostream> class Customer{ friend void Display(); private: int number, zipCode; public: ...

1 2 3 4 5 11