The metrowerks tag has no wiki summary.
0
votes
0answers
19 views
using OpenSSL and libCURL for Metrowerks 8 on Win32?
I have an old codebase that needs some quick changes that involve OpenSSL and libCURL. It currently builds in Metrowerks Codewarrior 8 on a Windows XP system.
There is a plan to move this to Visual ...
0
votes
1answer
524 views
Protocol Specification of Metro TRK or App TRK
Can somebody point to the protocol docs of Metro TRK and/or App TRK that is used for on device debugging for Symbian Application?
1
vote
3answers
147 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 ...
1
vote
4answers
342 views
Objective-C And MetroWerks C/C++ IDE
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 version 1, ...
2
votes
4answers
578 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 ...
3
votes
1answer
194 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:
... ...
4
votes
12answers
3k 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() { ...