Counter Strike : Global Offensive Source Code
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

43 lines
990 B

  1. //========= Copyright � 1996-2005, Valve Corporation, All rights reserved. ============//
  2. //
  3. // Purpose:
  4. //
  5. // $NoKeywords: $
  6. //
  7. //=============================================================================//
  8. // NewKeyValue.h : header file
  9. //
  10. /////////////////////////////////////////////////////////////////////////////
  11. // CNewKeyValue dialog
  12. class CNewKeyValue : public CDialog
  13. {
  14. // Construction
  15. public:
  16. CNewKeyValue(CWnd* pParent = NULL); // standard constructor
  17. // Dialog Data
  18. //{{AFX_DATA(CNewKeyValue)
  19. enum { IDD = IDD_NEWKEYVALUE };
  20. CString m_Key;
  21. CString m_Value;
  22. //}}AFX_DATA
  23. // Overrides
  24. // ClassWizard generated virtual function overrides
  25. //{{AFX_VIRTUAL(CNewKeyValue)
  26. protected:
  27. virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
  28. //}}AFX_VIRTUAL
  29. // Implementation
  30. protected:
  31. // Generated message map functions
  32. //{{AFX_MSG(CNewKeyValue)
  33. // NOTE: the ClassWizard will add member functions here
  34. //}}AFX_MSG
  35. DECLARE_MESSAGE_MAP()
  36. };