Class Hierarchy   Class Index   Method Index  

CHMeditOutputLog.h

00001 #ifndef __CHM_EDIT_OUTPUT_LOG__
00002 #define __CHM_EDIT_OUTPUT_LOG__
00003 //------------------------------------------------------------------------
00004 // Copyright (C) 1997-2007 iNTERFACEWARE Inc.  All Rights Reserved
00005 //
00006 // Module: CHMeditOutputLog
00007 //
00008 // Author: Greg Norman
00009 // Revision: $Revision: 1.6 $
00010 //
00011 // Last Edit Date: $Date: 2006-12-21 22:24:23 $
00012 // Source: $Source: /home/cvs/cvsroot/CHM/CHMeditOutputLog.h,v $
00013 //---------------------------------------------------------------------------
00014 #include <CHM/CHMoutputLog.h>
00015 
00016 class CEdit;
00022 class CHMeditOutputLog 
00023 : public CHMoutputLog
00024 {
00025 public:
00029    CHMeditOutputLog(CEdit* Edit) : pEdit(Edit) {}
00031    virtual ~CHMeditOutputLog() {}
00032    
00036    virtual void OutputLine(const CHMchar* pLine);
00037 private:
00038    CEdit* pEdit;
00039 };
00040 #endif // end of defensive include
00041