Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions Modules/Core/Common/include/itkRegion.h
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,13 @@ class ITKCommon_EXPORT Region
Region() = default;
virtual ~Region() = default;

Region(const Region &) = default;
Comment thread
jhlegarreta marked this conversation as resolved.
Region &
operator=(const Region &) = default;
Region(Region &&) = default;
Region &
operator=(Region &&) = default;

protected:
/** Methods invoked by Print() to print information about the object
* including superclasses. Typically not called by the user (use Print()
Expand Down