#include "mitkImage.h"#include "mitkImageDataItem.h"#include <fstream>Go to the source code of this file.
Functions | |
| int | mitkImageDataItemTest (int, char *[]) |
| int mitkImageDataItemTest | ( | int | , |
| char * | [] | ||
| ) |
Definition at line 23 of file mitkImageDataItemTest.cpp.
References EXIT_SUCCESS.
{
unsigned long *pixels = new unsigned long [100];
void * data = pixels;
std::cout << "Testing pseudo-type independent deleting: ";
delete [] (unsigned char*) data;
std::cout<<"[PASSED]"<<std::endl;
std::cout<<"[TEST DONE]"<<std::endl;
return EXIT_SUCCESS;
}
1.7.2