⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 vnl_error.cxx

📁 DTMK软件开发包,此为开源软件,是一款很好的医学图像开发资源.
💻 CXX
字号:
// This is core/vnl/vnl_error.cxx
#ifdef VCL_NEEDS_PRAGMA_INTERFACE
#pragma implementation
#endif
//:
// \file
//
// Copyright (C) 1991 Texas Instruments Incorporated.
// Copyright (C) 1993 General Electric Company.
//
// Permission is granted to any individual or institution to use, copy, modify,
// and distribute this software, provided that this complete copyright and
// permission notice is maintained, intact, in all copies and supporting
// documentation.
//
// Texas Instruments Incorporated and General Electric Company
// provides this software "as is" without express or implied warranty.

#include "vnl_error.h"
#include <vcl_iostream.h>
#include <vcl_cstdlib.h> // for vcl_abort()

//: Raise exception for invalid index
void vnl_error_vector_index (char const* fcn, int index)
{
  //RAISE Error, SYM(vnl_error_vector), SYM(Invalid_Index),
  vcl_cerr << "vnl_error_vector_index:" << fcn
           << ": Invalid value " << index << " specified for index.\n";
  vcl_abort();
}

//: Raise exception for invalid dimensions
void vnl_error_vector_dimension (char const* fcn, int l1, int l2)
{
  //RAISE Error, SYM(vnl_error_vector), SYM(Invalid_Dim),
  vcl_cerr << "vnl_error_vector_dimension:" << fcn << ": Dimensions ["
           << l1 << "] and [" << l2 << "] do not match.\n";
  vcl_abort();
}


//: Raise exception for using class objects, or chars in (...)
void vnl_error_vector_va_arg (int n)
{
  //RAISE Error, SYM(vnl_error_vector), SYM(Invalid_Va_Arg),
  vcl_cerr << "vnl_error_vector_va_arg: Invalid type in ..."
           << " or wrong alignment with " << n << " bytes.\n";
  vcl_abort();
}

//--------------------------------------------------------------------------------

void vnl_error_matrix_row_index (char const* fcn, int r)
{
  //RAISE Error, SYM(vnl_error_matrix), SYM(Invalid_Row),
  vcl_cerr << "vnl_error_matrix_row_index:" << fcn
           << ": Invalid value " << r << " specified for row.\n";
  vcl_abort();
}


//: Raise exception for invalid col index.
void vnl_error_matrix_col_index (char const* fcn, int c)
{
  //RAISE Error, SYM(vnl_error_matrix), SYM(Invalid_Col),
  vcl_cerr << "vnl_error_matrix_col_index:" << fcn << ": Invalid value "
           << c << " specified for column.\n";
  vcl_abort();
}

//: Raise exception for invalid dimensions
void vnl_error_matrix_dimension (char const* fcn, int r1, int c1, int r2, int c2)
{
  //RAISE Error, SYM(vnl_error_matrix), SYM(Invalid_Dim),
  vcl_cerr << "vnl_error_matrix_dimension:" << fcn << ": Dimensions [" << r1
           << ',' << c1 << "] and [" << r2 << ',' << c2 << "] do not match.\n";
  vcl_abort();
}


//: Raise exception for invalid dimensions
void vnl_error_matrix_nonsquare (char const* fcn)
{
  //RAISE Error, SYM(vnl_error_matrix), SYM(Invalid_Dim),
  vcl_cerr << "vnl_error_matrix_nonsquare:" << fcn
           << ": Matrix must be square.\n";
  vcl_abort();
}

//: Raise exception for using class objects, or chars in (...)
void vnl_error_matrix_va_arg (int n)
{
  //RAISE Error, SYM(vnl_error_matrix), SYM(Invalid_Va_Arg),
  vcl_cerr << "vnl_error_matrix_va_arg: Invalid type in ..."
           << " or wrong alignment with " << n << " bytes.\n";
  vcl_abort();
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -