Team Fortress 2 Source Code as on 22/4/2020
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.

31 lines
704 B

  1. //========= Copyright Valve Corporation, All rights reserved. ============//
  2. //
  3. // Purpose: Generic in-game abuse reporting
  4. //
  5. // $NoKeywords: $
  6. //=============================================================================//
  7. #ifndef TF_ABUSE_REPORT_H
  8. #define TF_ABUSE_REPORT_H
  9. #ifdef _WIN32
  10. #pragma once
  11. #endif
  12. #include <abuse_report.h>
  13. /// Abuse report manager that knows about the TF2 specifics
  14. class CTFAbuseReportManager : public CAbuseReportManager
  15. {
  16. public:
  17. CTFAbuseReportManager();
  18. virtual ~CTFAbuseReportManager();
  19. virtual void ActivateSubmitReportUI();
  20. virtual bool CreateAndPopulateIncident();
  21. protected:
  22. //virtual bool CreateAndPopulateIncident();
  23. };
  24. #endif // TF_ABUSE_REPORT_H