home *** CD-ROM | disk | FTP | other *** search
- // EmployeeDoc.h : interface of the CEmployeeDoc class
- //
- /////////////////////////////////////////////////////////////////////////////
- #include "EmployeePaySet.h"
- #include "EmployeePersonalSet.h"
-
- class CEmployeeDoc : public CDocument
- {
- protected: // create from serialization only
- CDatabase m_DB;
- CEmployeeDoc();
- DECLARE_DYNCREATE(CEmployeeDoc)
-
- // Attributes
- public:
- CEmployeePaySet * GetEmployeePaySet();
- CEmployeePersonalSet * GetEmployeeInfoSet( );
- CEmployeePersonalSet m_employeePersonalInfoSet;
- CEmployeePaySet m_employeePaySet;
-
- // Operations
- public:
-
- // 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()
- };
-
- /////////////////////////////////////////////////////////////////////////////
-