deprecated.h 440 B

123456789101112131415161718
  1. /*
  2. * NICE-Core - efficient algebra and computer vision methods
  3. * - libfbasics - library of some basic tools
  4. * See file License for license information.
  5. */
  6. #ifndef _FBASICS_DEPRECATED_H
  7. #define _FBASICS_DEPRECATED_H
  8. #if (__GNUC__ > 3 || (__GNUC__ == 3 && __GNUC_MINOR__ >= 1))
  9. #define LIMUN_DEPRECATED __attribute__((__deprecated__))
  10. #else
  11. #define LIMUN_DEPRECATED
  12. #endif /* __GNUC__ */
  13. namespace NICE {
  14. };
  15. #endif