home *** CD-ROM | disk | FTP | other *** search
/ io Programmo 23 / IOPROG_23.ISO / SOFT / VFORM.ZIP / Samples / vfDao / CategorySet.h < prev    next >
Encoding:
C/C++ Source or Header  |  1998-10-10  |  1.3 KB  |  44 lines

  1. #if !defined(AFX_CATEGORYSET_H__29E6CFFB_841F_11D1_88FB_00A0C9050951__INCLUDED_)
  2. #define AFX_CATEGORYSET_H__29E6CFFB_841F_11D1_88FB_00A0C9050951__INCLUDED_
  3.  
  4. #if _MSC_VER >= 1000
  5. #pragma once
  6. #endif // _MSC_VER >= 1000
  7. // CategorySet.h : header file
  8. //
  9.  
  10. /////////////////////////////////////////////////////////////////////////////
  11. // CCategorySet DAO recordset
  12.  
  13. class CCategorySet : public CDaoRecordset
  14. {
  15. public:
  16.     CCategorySet(CDaoDatabase* pDatabase = NULL);
  17.     DECLARE_DYNAMIC(CCategorySet)
  18.  
  19. // Field/Param Data
  20.     //{{AFX_FIELD(CCategorySet, CDaoRecordset)
  21.     CString    m_Category;
  22.     //}}AFX_FIELD
  23.  
  24. // Overrides
  25.     // ClassWizard generated virtual function overrides
  26.     //{{AFX_VIRTUAL(CCategorySet)
  27.     public:
  28.     virtual CString GetDefaultDBName();        // Default database name
  29.     virtual CString GetDefaultSQL();        // Default SQL for Recordset
  30.     virtual void DoFieldExchange(CDaoFieldExchange* pFX);  // RFX support
  31.     //}}AFX_VIRTUAL
  32.  
  33. // Implementation
  34. #ifdef _DEBUG
  35.     virtual void AssertValid() const;
  36.     virtual void Dump(CDumpContext& dc) const;
  37. #endif
  38. };
  39.  
  40. //{{AFX_INSERT_LOCATION}}
  41. // Microsoft Developer Studio will insert additional declarations immediately before the previous line.
  42.  
  43. #endif // !defined(AFX_CATEGORYSET_H__29E6CFFB_841F_11D1_88FB_00A0C9050951__INCLUDED_)
  44.