rope 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. /******************************************************************************/
  2. /* This file was taken from STLport <www.stlport.org> and modified by */
  3. /* Texas Instruments. */
  4. /******************************************************************************/
  5. /*
  6. * Copyright (c) 1997
  7. * Silicon Graphics Computer Systems, Inc.
  8. *
  9. * Copyright (c) 2014-2014 Texas Instruments Incorporated
  10. *
  11. * Permission to use, copy, modify, distribute and sell this software
  12. * and its documentation for any purpose is hereby granted without fee,
  13. * provided that the above copyright notice appear in all copies and
  14. * that both that copyright notice and this permission notice appear
  15. * in supporting documentation. Silicon Graphics makes no
  16. * representations about the suitability of this software for any
  17. * purpose. It is provided "as is" without express or implied warranty.
  18. */
  19. #ifndef _STLP_ROPE
  20. #define _STLP_ROPE
  21. #ifndef _STLP_OUTERMOST_HEADER_ID
  22. # define _STLP_OUTERMOST_HEADER_ID 0x54
  23. # include <s__prolog.h>
  24. #endif
  25. #ifdef _STLP_PRAGMA_ONCE
  26. # pragma once
  27. #endif
  28. #if defined (_STLP_NO_EXTENSIONS)
  29. /* Comment following if you want to use rope class even if you ask for
  30. * no extension.
  31. */
  32. # error The rope class is a STLport extension.
  33. #endif
  34. #include <s__rope.h>
  35. #if (_STLP_OUTERMOST_HEADER_ID == 0x54)
  36. # include <s__epilog.h>
  37. # undef _STLP_OUTERMOST_HEADER_ID
  38. #endif
  39. #endif /* _STLP_ROPE */
  40. // Local Variables:
  41. // mode:C++
  42. // End: