home *** CD-ROM | disk | FTP | other *** search
/ Magazyn Internet 2000 May / MICD_2000_05.iso / CBuilder5 / INSTALL / DATA1.CAB / Program_Built_Files / Include / streamty.h < prev    next >
C/C++ Source or Header  |  2000-02-01  |  4KB  |  112 lines

  1. /***********************************************************************
  2. **          S T R E A M T Y . H                                        *
  3. **                                                                     *
  4. ************************************************************************
  5. ** Copyright (C) 1996 - 1999 Microsoft Corporation                         *
  6. **                 All Rights Reserved                                 *
  7. ************************************************************************/
  8. /*
  9.         STREAMTY.H
  10.  
  11.         StreamType record object class definitions for Microsoft Guide
  12. */
  13.  
  14.  
  15. #ifndef _STREAMTY_H_
  16. #pragma option push -b -a8 -pc -A- /*P_O_Push*/
  17. #define _STREAMTY_H_
  18.  
  19.  
  20. #include "dbsets.h"
  21.  
  22.  
  23. /*
  24.  
  25. StreamType objects are constructed from database records of the StreamType table.
  26.  
  27. The CStreamTypeRecordset class is used to select and create CStreamType objects
  28. from the StreamType table via functions in the CDatabaseRecordset parent class.
  29.  
  30. */
  31.  
  32.  
  33. class COMMMSTVEXPORT CStreamTypeRecordset : public CDatabaseRecordset
  34. {
  35.  
  36. // This class provides StreamType recordset manipulation via parent functions
  37.  
  38.  
  39. virtual CString GetTableName( VOID);
  40.  
  41. virtual BOOL    SetRecordsetObject( VOID* cRecordsetObject);
  42.  
  43. public:
  44. virtual VOID*   GetRecordsetObject( VOID);
  45. virtual BOOLEAN Seek(LPCTSTR lpszComparison, CObject &coo);
  46. virtual BOOLEAN Seek(LPCTSTR lpszComparison, LONG lStreamTypeID);
  47. };
  48.  
  49.  
  50. class COMMMSTVEXPORT CStreamType : public CObject
  51. {
  52.  
  53.     friend class CStreamTypeRecordset; // generates the CStreamType record object
  54.  
  55. private:
  56.  
  57.     LONG        m_lStreamTypeID;
  58.     LONG        m_lTuningSpace;
  59.     LONG        m_lValue;
  60.     CString        m_cszDescription;
  61.     LONG        m_lCategory;
  62.     LONG        m_lLocaleID;
  63.  
  64. public:
  65.  
  66.     CStreamType(LONG lStreamTypeID = AFX_RFX_LONG_PSEUDO_NULL,
  67.                 LONG lTuningSpace = 0,
  68.                 LONG lValue = 0,
  69.                 CString cszDescription = "",
  70.                 LONG lCategory = 0,
  71.                 LONG lLocaleID = 0) :
  72.                 m_lStreamTypeID(lStreamTypeID),
  73.                 m_lTuningSpace(lTuningSpace),
  74.                 m_lValue(lValue),
  75.                 m_cszDescription(cszDescription),
  76.                 m_lCategory(lCategory),
  77.                 m_lLocaleID(lLocaleID) { }
  78.  
  79.     ~CStreamType(VOID) { }
  80.  
  81.     VOID    SetTuningSpace( LONG lTuningSpace) { m_lTuningSpace = lTuningSpace; }
  82.     VOID    SetValue( LONG lValue) { m_lValue = lValue; }
  83.     VOID    SetDescription( CString cszDescription) { m_cszDescription = cszDescription; }
  84.     VOID    SetCategory( LONG lCategory) { m_lCategory = lCategory; }
  85.     VOID    SetLocaleID( LONG lLocaleID) { m_lLocaleID = lLocaleID; }
  86.  
  87.     LONG            StreamTypeID() { return m_lStreamTypeID; }
  88.     LONG            TuningSpace() { return m_lTuningSpace; }
  89.     LONG            Value() { return m_lValue; }
  90.     CString         Description() { return m_cszDescription; }
  91.     LONG            Category() { return m_lCategory; }
  92.     LONG            LocaleID() { return m_lLocaleID; }
  93. };
  94.  
  95.  
  96. // Table: StreamType
  97.  
  98. #define TBL_StreamType  _T("[Stream Type]")
  99.  
  100. //      Field:                          Name                        Type            Size
  101.  
  102. #define FLD_StreamType_StreamTypeID        _T("SR Stream Type ID")        // AutoLong      4
  103. #define FLD_StreamType_TuningSpace        _T("SR Tuning Space")        // Long          4
  104. #define FLD_StreamType_Value            _T("SR Value")              // Long          4
  105. #define FLD_StreamType_Description        _T("SR Description")        // Text          Memo
  106. #define FLD_StreamType_Category            _T("SR Category")            // Long          4
  107. #define FLD_StreamType_LocaleID            _T("SR LocaleID")            // Long          4
  108.  
  109. #pragma option pop /*P_O_Pop*/
  110. #endif
  111.  
  112.