-
Notifications
You must be signed in to change notification settings - Fork 5
Create proper Hdu container #55
Copy link
Copy link
Open
Labels
enhancementNew feature or request related to an existing serviceNew feature or request related to an existing servicequestionFurther information is requestedFurther information is requested
Milestone
Metadata
Metadata
Assignees
Labels
enhancementNew feature or request related to an existing serviceNew feature or request related to an existing servicequestionFurther information is requestedFurther information is requested
Type
Fields
Give feedbackNo fields configured for issues without a type.
A proper
Hducontainer would be useful for integration with the standard lib, whileMefFiledomain-specific names are nice.MefFile::hdus()could provide access to someHduSeqwith reduced yet STL-compliant interface. This would also simplify strategy-handling by factorizing calls. We'd have things likeMefFile::primary() -> HduSeq::front()andMefFile::append_image(...) -> HduSeq::emplace_back(ImageInitializer(...)). The underlying container would preferrably be some list rather than a vector in order to avoid invalidating references at HDU deletion.