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.

28 lines
659 B

  1. //========= Copyright � 1996-2005, Valve Corporation, All rights reserved. ============//
  2. //
  3. // Purpose:
  4. //
  5. // $NoKeywords: $
  6. //=============================================================================//
  7. #ifndef IFILELIST_H
  8. #define IFILELIST_H
  9. #ifdef _WIN32
  10. #pragma once
  11. #endif
  12. // This class represents a group of files. Internally, it can represent whole folders of files
  13. // that are in or out of the group. So you can't iterate the list, but you can ask the
  14. // class if a particular filename is in the list.
  15. class IFileList
  16. {
  17. public:
  18. virtual bool IsFileInList( const char *pFilename ) = 0;
  19. virtual void Release() = 0;
  20. };
  21. #endif // IFILELIST_H