home *** CD-ROM | disk | FTP | other *** search
/ PC World 2003 June / PCWorld_2003-06_cd.bin / KOMUNIK / MIRRORIT / SRC / MIRRORITDOC.H < prev    next >
C/C++ Source or Header  |  1998-01-04  |  2KB  |  68 lines

  1. // MirrorItDoc.h : interface of the CMirrorItDoc class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4.  
  5. #if !defined(AFX_MIRRORITDOC_H__C2396A6D_40C6_11D1_83C6_0000C0003048__INCLUDED_)
  6. #define AFX_MIRRORITDOC_H__C2396A6D_40C6_11D1_83C6_0000C0003048__INCLUDED_
  7.  
  8. #if _MSC_VER >= 1000
  9. #pragma once
  10. #endif // _MSC_VER >= 1000
  11.  
  12. class CSession;
  13.  
  14. class CMirrorItDoc : public CDocument
  15. {
  16. protected: // create from serialization only
  17.     CMirrorItDoc();
  18.     DECLARE_DYNCREATE(CMirrorItDoc)
  19.  
  20. // Attributes
  21. public:
  22.  
  23. // Operations
  24. public:
  25.  
  26. // Overrides
  27.     // ClassWizard generated virtual function overrides
  28.     //{{AFX_VIRTUAL(CMirrorItDoc)
  29.     public:
  30.     virtual BOOL OnNewDocument();
  31.     virtual void Serialize(CArchive& ar);
  32.     virtual void DeleteContents();
  33.     //}}AFX_VIRTUAL
  34.  
  35. // Implementation
  36. public:
  37.     BOOL m_ClipboardOperation;
  38.     void StartSession();
  39.     void MovedownSession(CListCtrl & list);
  40.     void MoveupSession(CListCtrl & list);
  41.     void AddSession(CString SessionName, CString BaseURL);
  42.     void PropertiesSession(int selected);
  43.     void PropertiesSession(CListCtrl &list);
  44.     void RemoveSession(CListCtrl &list);
  45.     void AddSession();
  46.     CPtrArray sessions;
  47.     virtual ~CMirrorItDoc();
  48. #ifdef _DEBUG
  49.     virtual void AssertValid() const;
  50.     virtual void Dump(CDumpContext& dc) const;
  51. #endif
  52.  
  53. protected:
  54.  
  55. // Generated message map functions
  56. protected:
  57.     //{{AFX_MSG(CMirrorItDoc)
  58.     //}}AFX_MSG
  59.     DECLARE_MESSAGE_MAP()
  60. };
  61.  
  62. /////////////////////////////////////////////////////////////////////////////
  63.  
  64. //{{AFX_INSERT_LOCATION}}
  65. // Microsoft Developer Studio will insert additional declarations immediately before the previous line.
  66.  
  67. #endif // !defined(AFX_MIRRORITDOC_H__C2396A6D_40C6_11D1_83C6_0000C0003048__INCLUDED_)
  68.