Skip to content
Snippets Groups Projects
Commit 9214e108 authored by Antoine Regimbeau's avatar Antoine Regimbeau
Browse files

TEST: add trace in image creation

parent ddd6bd34
Branches
Tags
No related merge requests found
......@@ -252,7 +252,9 @@ public:
protected:
Image();
~Image() ITK_OVERRIDE {}
~Image() ITK_OVERRIDE {
std::cout<<"An image is deleted"<<std::endl;
}
private:
Image(const Self &) = delete;
......
......@@ -32,6 +32,7 @@ namespace otb
template <class TPixel, unsigned int VImageDimension>
Image<TPixel, VImageDimension>::Image()
{
std::cout<<"An image is created"<<std::endl;
}
template <class TPixel, unsigned int VImageDimension>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment