Skip to content

Commit

Permalink
Make ViewId Serializable
Browse files Browse the repository at this point in the history
  • Loading branch information
tpietzsch committed Sep 26, 2024
1 parent 7916e57 commit 92d3c9a
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/main/java/mpicbg/spim/data/sequence/ViewId.java
Original file line number Diff line number Diff line change
Expand Up @@ -28,13 +28,15 @@
*/
package mpicbg.spim.data.sequence;

import java.io.Serializable;

/**
* Identifies a particular view as a combination of a {@link TimePoint} id and a
* {@link ViewSetup} id.
*
* @author Tobias Pietzsch <[email protected]>
*/
public class ViewId implements Comparable< ViewId >
public class ViewId implements Comparable< ViewId >, Serializable
{
/**
* The timepoint id.
Expand Down

0 comments on commit 92d3c9a

Please sign in to comment.