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
898 B

  1. //========= Copyright � 1996-2005, Valve Corporation, All rights reserved. ============//
  2. //
  3. // Purpose: Arbitrary length bit string
  4. // ** NOTE: This class does NOT override the bitwise operators
  5. // as doing so would require overriding the operators
  6. // to allocate memory for the returned bitstring. This method
  7. // would be prone to memory leaks as the calling party
  8. // would have to remember to delete the memory. Funtions
  9. // are used instead to require the calling party to allocate
  10. // and destroy their own memory
  11. //
  12. // $Workfile: $
  13. // $Date: $
  14. //
  15. //-----------------------------------------------------------------------------
  16. // $Log: $
  17. //
  18. // $NoKeywords: $
  19. //=============================================================================//
  20. #ifndef BITSTRING_H
  21. #define BITSTRING_H
  22. #pragma once
  23. #include "bitvec.h"
  24. #endif // BITSTRING_H