home *** CD-ROM | disk | FTP | other *** search
- // EmployeeDoc.h : interface of the CEmployeeDoc class
- //
- /////////////////////////////////////////////////////////////////////////////
-
- #if !defined(AFX_EMPLOYEEDOC_H__E708A684_460C_11D0_9C9D_00A0D100E3C8__INCLUDED_)
- #define AFX_EMPLOYEEDOC_H__E708A684_460C_11D0_9C9D_00A0D100E3C8__INCLUDED_
-
-
- class CEmployeeDoc : public CDocument
- {
- protected: // create from serialization only
- CEmployeeDoc();
- DECLARE_DYNCREATE(CEmployeeDoc)
-
- // Attributes
- public:
- CEmployeePaySet m_employeePaySet;
- CEmployeePersonalSet m_employeePersonalInfoSet;
-
- // Operations
- public:
- CEmployeePaySet * GetEmployeePaySet() {return &m_employeePaySet; }
- CEmployeePersonalSet * GetEmployeeInfoSet()
- {return &m_employeePersonalInfoSet; }
-
- // Overrides
- // ClassWizard generated virtual function overrides
- //{{AFX_VIRTUAL(CEmployeeDoc)
- public:
- virtual BOOL OnNewDocument();
- //}}AFX_VIRTUAL
-
- // Implementation
- public:
- virtual ~CEmployeeDoc();
- #ifdef _DEBUG
- virtual void AssertValid() const;
- virtual void Dump(CDumpContext& dc) const;
- #endif
-
- protected:
-
- // Generated message map functions
- protected:
- //{{AFX_MSG(CEmployeeDoc)
- // NOTE - the ClassWizard will add and remove member functions here.
- // DO NOT EDIT what you see in these blocks of generated code !
- //}}AFX_MSG
- DECLARE_MESSAGE_MAP()
- };
-
- /////////////////////////////////////////////////////////////////////////////
-
- //{{AFX_INSERT_LOCATION}}
- // Microsoft Developer Studio will insert additional declarations immediately before the previous line.
-
- #endif // !defined(AFX_EMPLOYEEDOC_H__E708A684_460C_11D0_9C9D_00A0D100E3C8__INCLUDED_)
-