Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

68 lines
1.9 KiB

  1. // LCDManDoc.h : interface of the CLCDManDoc class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_LCDMANDOC_H__1BC85EF7_74DE_11D2_AB4D_00C04F991DFD__INCLUDED_)
  5. #define AFX_LCDMANDOC_H__1BC85EF7_74DE_11D2_AB4D_00C04F991DFD__INCLUDED_
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. class CLCDManDoc : public CDocument
  10. {
  11. protected: // create from serialization only
  12. CLCDManDoc();
  13. DECLARE_DYNCREATE(CLCDManDoc)
  14. // Attributes
  15. public:
  16. // Operations
  17. public:
  18. // Overrides
  19. // ClassWizard generated virtual function overrides
  20. //{{AFX_VIRTUAL(CLCDManDoc)
  21. public:
  22. virtual BOOL OnNewDocument();
  23. virtual void Serialize(CArchive& ar);
  24. virtual BOOL OnOpenDocument(LPCTSTR lpszPathName);
  25. //}}AFX_VIRTUAL
  26. // Implementation
  27. public:
  28. virtual ~CLCDManDoc();
  29. CStringList *GetLIst() { return &m_List;}
  30. CString GetState() { return m_cstrState;}
  31. void InitDocument(CFile *);
  32. #ifdef _DEBUG
  33. virtual void AssertValid() const;
  34. virtual void Dump(CDumpContext& dc) const;
  35. #endif
  36. protected:
  37. // Generated message map functions
  38. protected:
  39. // CTypedPtrList <CObList, CString*> m_List;
  40. CStringList m_List;
  41. CString m_cstrState;
  42. int m_iDocTimeIntrval;
  43. LPTSTR m_ptFileBuffer;
  44. LPTSTR m_ptBufferStart;
  45. LPTSTR m_ptBufferEnd;
  46. //{{AFX_MSG(CLCDManDoc)
  47. // NOTE - the ClassWizard will add and remove member functions here.
  48. // DO NOT EDIT what you see in these blocks of generated code !
  49. //}}AFX_MSG
  50. DECLARE_MESSAGE_MAP()
  51. };
  52. /////////////////////////////////////////////////////////////////////////////
  53. //{{AFX_INSERT_LOCATION}}
  54. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  55. #endif // !defined(AFX_LCDMANDOC_H__1BC85EF7_74DE_11D2_AB4D_00C04F991DFD__INCLUDED_)