Search Results

0
votes
3answers
54 views

Reconnect to Process Started Via COM

First, I'd like to note that I need to use the COM/OLE2 APIs, the low level stuff, the stuff you can put in a C Windows Console program. I can't use MFC. I can't use .NET. My question is: …
0
votes

How to write portable floating point arithmetic in c++ ?

I believe "limits.h" will include the C library constants INT_MAX and its brethren. However, it is preferable to use "limits" and the classes it defines: std::numeric_limits<float> …
0
votes

Same function, different return types for class hierarchy

You could do: template class base { public: void calculateValue(value_type& x); }; class derived1 : protected base { private: float m_price; int m_quantity; float m_value …
0
votes

How do you handle command line options and config files?

Not sure about command line argument parsing. I have not needed very rich capabilities in that area and have generally rolled my own to save adding more dependencies to my software. Depending upon …
2
votes

Dividing C++ Application into Libraries

You should have a read of Large-Scale C++ Software Design by John Lakos. You may not be able to read it before you start your work, but you should put this book on your list. Other …