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
~228 People Reached
Favorite Forums
Favorite Tags
c++ x 4
Member Avatar for MrPickle

I want to store several structs in a vector, but the struct has a template so I get a compile error, how can I store the structs in the vector? Example: [code]template<class First, class Second> struct foo { First f; Second s; }; std::vector<foo> bar; //error! [/code]

Member Avatar for StuXYZ
0
96
Member Avatar for MrPickle

How can I play sounds under windows? I know about PlaySound() but I want to load the sound by myself, then play.

Member Avatar for Comatose
0
43
Member Avatar for MrPickle

I want to write a program to detect when my laptop's mouse is connected/disconnected but I don't know if there's any events called when a USB device is plugged in or maybe it's something else? I'd also like to know whether it's possible to tell what device the mouse input …

Member Avatar for camthalion95
0
89