2014-01-31 08:23:00 +13:00
|
|
|
|
|
|
|
|
#ifndef SOURCEFILE_H
|
|
|
|
|
#define SOURCEFILE_H
|
|
|
|
|
|
2019-01-18 17:04:34 +01:00
|
|
|
class SourceFile : public CRichEditCtrl {
|
|
|
|
|
public:
|
2014-01-31 08:23:00 +13:00
|
|
|
SourceFile();
|
|
|
|
|
~SourceFile();
|
|
|
|
|
|
2019-01-18 17:04:34 +01:00
|
|
|
void highLight(int row, int col);
|
2014-01-31 08:23:00 +13:00
|
|
|
|
2019-01-18 17:04:34 +01:00
|
|
|
DECLARE_DYNAMIC(SourceFile)
|
2014-01-31 08:23:00 +13:00
|
|
|
DECLARE_MESSAGE_MAP()
|
|
|
|
|
|
2019-01-18 17:04:34 +01:00
|
|
|
afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
|
2014-01-31 08:23:00 +13:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
#endif
|