Are you more than just a Qt Developer? We are launching the new Nokia Certified Qt Specialist designation and the final release of two Qt specialist exams: http://qt.nokia.com/certification Discounts for all Qt Certification Exams available for a limited time Celebrating the release of two new exams and the launch of the Nokia Certified Qt Specialist [...]
Archive for the ‘C++’ Category
What’s New in Qt Learning?
Protected: First look: Qt 4.5 rocks for rapid cross-platform development
There is no excerpt because this is a protected post.
Protected: Distributed Object Computing (DOC) Group for Distributed Real-time and Embedded (DRE) Systems
There is no excerpt because this is a protected post.
Protected: CTemplate
There is no excerpt because this is a protected post.
CORBA python Ubuntu
The Common Object Requesting Broker Architecture (CORBA) is a standard defined by the Object Management Group (OMG) that enables software components written in multiple computer languages and running on multiple computers to work together. CORBA is a mechanism in software for normalizing the method-call semantics between application objects that reside either in the same address [...]
wxWidgets in Eclipse on Ubuntu
Compiling and debugging wxWidgets in Eclipse, with Eclipse project files. I used the prebuilt wxWidgets project files for Eclipse created by Dan Howard. See also the wxWidgets wiki entry on this. Install Eclipse and CDT You could download Eclipse SDK and Sun Java separately, but I found that the Free Java (using gcj) also worked. [...]
Screen Recorder vnc2swf
Vnc2swf is a cross-platform screen recording tool for ShockWave Flash (swf) format. http://www.unixuser.org/%7Eeuske/vnc2swf/ Frequently Asked Questions What’s the difference between Python version and C version? Vnc2swf comes with two different implementations: * Python version (pyvnc2swf): o Runs on many platforms, including Linux, FreeBSD, Solaris, Mac OS X, and Windows. o Has more functions (e.g. editing, [...]
C syntax
Basic Program #include /***************************************************************************** name: main purpose: entry point of the whole program args: (in) argc – num of command line arguments (incl. program exe) (in) argv – an array of strings (char*) of each command line argument with argc members returns: 0 for success, -1 on failure *****************************************************************************/ int main(int argc, char **argv) { [...]
C ++ syntax
New Type Modifiers ////////////////////////////////////////////////////////////////////////////// // name: new_type_modifiers // purpose: show the new type modifiers // args: (out) result – ref of the result of this func // (in) array – input array of 5 real numbers // returns: a ref to a real number // notes: passing large args by ref reduces copying without changing [...]
