ITK/Examples/SimpleOperations/GetNameOfClass: Difference between revisions

From KitwarePublic
< ITK‎ | Examples
Jump to navigationJump to search
mNo edit summary
Line 1: Line 1:
Get the name of the class of an object.
==GetNameOfClass.cxx==
==GetNameOfClass.cxx==
<source lang="cpp">
<source lang="cpp">

Revision as of 13:50, 18 November 2010

Get the name of the class of an object.

GetNameOfClass.cxx

<source lang="cpp">

  1. 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>