3
votes
12answers
859 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
189 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
74 views
Solve boost.thread compilation error with Metrowerks compiler
Hi,
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
2answers
59 views
C/C++ Resources To Develop Using MetroWerks C/C++
Hello,
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 …
0
votes
3answers
103 views
Objective-C And MetroWerks C/C++ IDE
Hello,
I'm learning Objective-C and my friend have a real Macintosh IIci, that uses a Mac System 7(specifically 7.5.5 with a 68k processor) and I've installed Metrowerks C/C++ IDE(I think it's the …
