C++ is a statically typed, free-form, multi-paradigm, compiled, general-purpose programming language.
1
vote
1answer
58 views
Communication to device is lost when network starts on boot up?
I have an application that opens a socket on port 4444 to a device (/dev/linkToDevice). The "linkToDevice" is a link to ttyUSB0. The application is a c++ program of which is now a daemon and runs at ...
0
votes
1answer
37 views
How to manually install a cpp library
I want to install the opengl sdk http://glsdk.sourceforge.net/docs/html/pg_build.html . I successfully built it but it has no install script.
I am wondering where I have to put them in order for ...
1
vote
0answers
123 views
Geany feature or plugin to show members of a class
Im using ubuntu 12.04.
For c++, is there a functionality (or plugins that will provide this) in Geany which enables suggestion/hint list of all members of a class, also classes from a linked library? ...
0
votes
0answers
199 views
How to get keyboard input PS/2 scan codes or USB usage codes in a Qt application?
I'm trying to get the PS/2 scan codes or USB usage codes of keyboard keys pressed in a Qt application. I tried overriding QWidget::keyPressEvent() but QKeyEvent::navtiveScanCode() returns a value ...