ITK/Examples/SimpleOperations/GetNameOfClass
From KitwarePublic
< ITK | Examples
Jump to navigationJump to search
Revision as of 13:50, 18 November 2010 by Daviddoria (talk | contribs)
Get the name of the class of an object.
GetNameOfClass.cxx
<source lang="cpp">
- include <itkImage.h>
int main(int, char*[]) {
typedef itk::Image<unsigned char, 2> ImageType; ImageType::Pointer image = ImageType::New();
std::cout << "image is type: " << image->GetNameOfClass() << std::endl;
return EXIT_SUCCESS;
}
</source>
CMakeLists.txt
<source lang="cmake"> cmake_minimum_required(VERSION 2.6)
PROJECT(GetNameOfClass)
FIND_PACKAGE(ITK REQUIRED) INCLUDE(${ITK_USE_FILE})
ADD_EXECUTABLE(GetNameOfClass GetNameOfClass.cxx) TARGET_LINK_LIBRARIES(GetNameOfClass ITKCommon)
</source>