Skip to content
Snippets Groups Projects
Select Git revision
  • master default protected
  • v1.6.3
  • v1.6.2
  • v1.6.1
  • v1.6.0
  • v1.5.0
  • v1.4.1
  • v1.4.0
  • v1.3.9
  • v1.3.8
  • v1.3.7
  • v1.3.6
  • v1.3.5
  • v1.3.4
  • v1.3.3
  • v1.3.2
  • v1.3.1
  • v1.3.0
  • v1.2.23
  • v1.2.22
  • v1.2.21
21 results

interfaces.go

interfaces.go 428 B
package file

import "gitlab.com/gomidi/muskel/table"

type tabler interface {
	Part
	Name() string
	Cols() []string
	Finish() error
}

type Part interface {
	LineNo() int
	WriteTo(table.Formatter) error
	ParseLine(string) error
}

type score interface {
	table.Score
	Include(file string, sketch string, params []string) error
	Embed(patterns ...string) error
	HasTrack(name string) bool
	Properties() map[string]interface{}
}