失敗したときに null オブジェクトを作成するコンストラクター (c++) を作成するにはどうすればよいですか。
DCMTK ライブラリDicomImage
のクラスのように動作するクラスを作成したいと考えています。
#include "diregist.h" /* required to support color images */
DicomImage *image = new DicomImage("test.dcm");
if (image != NULL)
{
if (image->getStatus() == EIS_Normal)
{
Uint8 *pixelData = (Uint8 *)(image->getOutputData(8 /* bits per sample */));
if (pixelData != NULL)
{
/* do something useful with the pixel data */
}
}
else
cerr << "Error: cannot load DICOM image (" << DicomImage::getString(image->getStatus()) << ")" << endl;
}
delete image;