tcu_mod.txt
Associated article: Adding Exceptions & RTTI to the Windows CE Compiler: Part I
Tags:
Published source code accompanying the article by Dani Carles in which he describes the TCU library, which lets you add exception handling and RTTI to the Windows CE compiler. Also see TCU_MOD.ZIP.
Adding Exceptions & RTTI to the Windows CE Compiler: Part I
by Dani Carles
Listing One
// Gotcha using TCU_RTTI_DECLARE. Member access changed to public.
class A : public tcu_Rtti
{
public:
A();
~A();
private:
TCU_RTTI_DECLARE; // Public access ...


