sourcefile.h 284 B

123456789101112131415161718
  1. #ifndef SOURCEFILE_H
  2. #define SOURCEFILE_H
  3. class SourceFile : public CRichEditCtrl{
  4. public:
  5. SourceFile();
  6. ~SourceFile();
  7. void highLight( int row,int col );
  8. DECLARE_DYNAMIC( SourceFile )
  9. DECLARE_MESSAGE_MAP()
  10. afx_msg int OnCreate( LPCREATESTRUCT lpCreateStruct );
  11. };
  12. #endif