Code Syntax Highlighter for C++ test page
2006-07-23 Shin, YoungJin
class CHelloWorld { private: LPTSTR m_buf[80]; public: CHellWorld() { _tcscpy(m_buf, TEXT("Hello, world!"); } ~CHelloWord() { } void PrintMessage() { printf("%s\n", m_buf); } void PrintMessage2() { for(int i=0; i<10; ++i) PrintMessage(); } void PrintMessage3() { double z = 10.0; while(z) { PrintMessage(); z -= 2.0; } } virtual void PrintMessage4() = 0; };