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.

27 lines
673 B

  1. //========= Copyright Valve Corporation, All rights reserved. ============//
  2. //
  3. // Purpose:
  4. //
  5. // $NoKeywords: $
  6. //=============================================================================//
  7. #if !defined( ICODEPROCESSOR_H )
  8. #define ICODEPROCESSOR_H
  9. #ifdef _WIN32
  10. #pragma once
  11. #endif
  12. class ICodeProcessor
  13. {
  14. public:
  15. virtual void Process( const char *gamespecific, const char *root, const char *dsp, const char *config ) = 0;
  16. virtual void SetQuiet( bool quiet ) = 0;
  17. virtual bool GetQuiet( void ) const = 0;
  18. virtual void SetLogFile( bool log ) = 0;
  19. virtual bool GetLogFile( void ) const = 0;
  20. };
  21. extern ICodeProcessor *processor;
  22. #endif // ICODEPROCESSOR_H