All Downloads are FREE. Search and download functionalities are using the official Maven repository.

de.sciss.proc.gui.impl.CursorHolder.scala Maven / Gradle / Ivy

/*
 *  CursorHolder.scala
 *  (SoundProcesses)
 *
 *  Copyright (c) 2010-2024 Hanns Holger Rutz. All rights reserved.
 *
 *	This software is published under the GNU Affero General Public License v3+
 *
 *
 *  For further information, please contact Hanns Holger Rutz at
 *  [email protected]
 */

package de.sciss.proc.gui.impl

import de.sciss.lucre.{Cursor, Txn}

trait CursorHolder[T <: Txn[T]] {
  protected def cursor: Cursor[T]

  final protected def atomic[A](fun: T => A): A = cursor.step(fun)
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy