Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "SMLMData"
uuid = "5488f106-40b8-4660-84c5-84a168990d1b"
authors = ["klidke@unm.edu"]
version = "0.6.0"
version = "0.7.0"

[deps]
Adapt = "79e6a3ab-5dfb-504d-930d-738a2a938a0e"
Expand Down
21 changes: 21 additions & 0 deletions src/SMLMData.jl
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,10 @@ export
AbstractSMLD,
SMLD, # Deprecated alias for AbstractSMLD

# Ecosystem abstract types (tuple pattern)
AbstractSMLMConfig,
AbstractSMLMInfo,

# Concrete emitter types
Emitter2D,
Emitter3D,
Expand Down Expand Up @@ -101,6 +105,23 @@ export
load_smite_3d,
save_smite

# Ecosystem abstract types for the (Config, Info, Data) tuple pattern
"""
AbstractSMLMConfig

Abstract supertype for configuration structs in the JuliaSMLM ecosystem.
Subtypes hold algorithm parameters (e.g., fit settings, simulation parameters).
"""
abstract type AbstractSMLMConfig end

"""
AbstractSMLMInfo

Abstract supertype for information/results structs in the JuliaSMLM ecosystem.
Subtypes hold computed metadata or diagnostic output from algorithms.
"""
abstract type AbstractSMLMInfo end

# Include all source files
include("types/emitters.jl") # Move from current location
include("types/cameras.jl") # Move from current location
Expand Down