Tagged Questions

4
votes
12answers
2k views

C++ Anyway to prevent a method from being over ridden in sub classes?

Is anyone aware of a language feature or technique in C++ to prevent a child class from over riding a particular method in the parent class? class Base { public: bool someGuaranteedResult() { ...
2
votes
4answers
480 views

C++ code coverage tool for weird target platform

Anyone knows c++ code coverage tool usable under the following conditions: Target platform is PowerPC CPU inside Nintendo WII dev.kit, that runs custom embedded OS. The only way to exchange data ...
2
votes
1answer
165 views

Solve boost.thread compilation error with Metrowerks compiler

I'm trying to use boost.thread with metrowerks codewarrior 5.5.3; in the header thread.hpp, I get the error that he's redefining thread::thread_data: class BOOST_THREAD_DECL thread { private: ... ...
0
votes
3answers
116 views

C/C++ Resources To Develop Using MetroWerks C/C++

My friend have real Macintosh IIci, that uses Mac System 7.5.5 under a 68k processor, then I've installed Metrowerks C/C++ version 1 I think, but I'm getting errors even in a simple Hello World ...