Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~736 People Reached
Favorite Forums
Favorite Tags
c++ x 8
Member Avatar for Athos84

Hi all! I need to pass a list, like this: [code] //xmlparser.h public ref class XMLParser { ref struct Node { System::String^ type; System::String^ name; System::String^ role; }; System::Collections::Generic::List<Node^>^ xmlList; }; //form1.h #include "XMLParser.h" public ref class Form1 : public System::Windows::Forms::Form { public: Form1() { xp = gcnew XMLParser("settings.xml"); net …

0
69
Member Avatar for daviddoria

Normally I call this function like this [code] void MouseButton(int button, int state, int x, int y); ... glutMouseFunc(MouseButton); [/code] But now I would like to pass a member function instead of a "real" (non-member? whats the word for this?) function. [code] class Plot { void Plot::MouseButton(int button, int state, …

Member Avatar for kux
0
667