TypesTable.h 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. #if !defined(AFX_TYPESTABLE_H__41C712E1_75EC_4385_ABA3_9749852F63FD__INCLUDED_)
  2. #define AFX_TYPESTABLE_H__41C712E1_75EC_4385_ABA3_9749852F63FD__INCLUDED_
  3. #if _MSC_VER > 1000
  4. #pragma once
  5. #endif // _MSC_VER > 1000
  6. // TypesTable.h : header file
  7. //
  8. #pragma warning(disable : 4995)
  9. /////////////////////////////////////////////////////////////////////////////
  10. // CTypesTable DAO recordset
  11. class CTypesTable : public CDaoRecordset
  12. {
  13. public:
  14. CTypesTable(CDaoDatabase* pDatabase = NULL);
  15. DECLARE_DYNAMIC(CTypesTable)
  16. // Field/Param Data
  17. //{{AFX_FIELD(CTypesTable, CDaoRecordset)
  18. long m_ID;
  19. CString m_TypeText;
  20. //}}AFX_FIELD
  21. public:
  22. // Overrides
  23. // ClassWizard generated virtual function overrides
  24. //{{AFX_VIRTUAL(CTypesTable)
  25. public:
  26. virtual CString GetDefaultDBName(); // Default database name
  27. virtual CString GetDefaultSQL(); // Default SQL for Recordset
  28. virtual void DoFieldExchange(CDaoFieldExchange* pFX); // RFX support
  29. //}}AFX_VIRTUAL
  30. };
  31. //{{AFX_INSERT_LOCATION}}
  32. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  33. #endif // !defined(AFX_TYPESTABLE_H__41C712E1_75EC_4385_ABA3_9749852F63FD__INCLUDED_)