ImageException.h 328 B

12345678910111213141516
  1. /*
  2. * NICE-Core - efficient algebra and computer vision methods
  3. * - libimage - An image library
  4. * See file License for license information.
  5. */
  6. #ifndef _LIMUN_IMAGEEXCEPTION_H
  7. #define _LIMUN_IMAGEEXCEPTION_H
  8. #include "core/basics/Exception.h"
  9. namespace NICE {
  10. DEFINE_LIMUN_EXCEPTION(ImageException)
  11. } // namespace
  12. #endif