mirror of
https://github.com/onyx-and-iris/voicemeeter.git
synced 2024-11-15 17:40:51 +00:00
1efac19b12
CHANGELOG first update pre-commit updated to look in root of repo. version retraction added to go.mod README updated to reflect changes
114 lines
2.3 KiB
Go
114 lines
2.3 KiB
Go
package voicemeeter
|
|
|
|
// iOutputs defines the interface outputs type must satisfy
|
|
type iOutputs interface {
|
|
GetA1() bool
|
|
SetA1(val bool)
|
|
GetA2() bool
|
|
SetA2(val bool)
|
|
GetA3() bool
|
|
SetA3(val bool)
|
|
GetA4() bool
|
|
SetA4(val bool)
|
|
GetA5() bool
|
|
SetA5(val bool)
|
|
GetB1() bool
|
|
SetB1(val bool)
|
|
GetB2() bool
|
|
SetB2(val bool)
|
|
GetB3() bool
|
|
SetB3(val bool)
|
|
}
|
|
|
|
// outputs represents the outputs field (A1 - A5, B1 - B3)
|
|
// expected to be embedded
|
|
type outputs struct {
|
|
iRemote
|
|
}
|
|
|
|
// newOutputs returns an outputs type
|
|
func newOutputs(id string, i int) outputs {
|
|
o := outputs{iRemote{id, i}}
|
|
return o
|
|
}
|
|
|
|
// GetA1 returns the value of the A1 parameter
|
|
func (o *outputs) GetA1() bool {
|
|
return o.getter_bool("A1")
|
|
}
|
|
|
|
// SetA1 sets the value of the A1 parameter
|
|
func (o *outputs) SetA1(val bool) {
|
|
o.setter_bool("A1", val)
|
|
}
|
|
|
|
// GetA2 returns the value of the A2 parameter
|
|
func (o *outputs) GetA2() bool {
|
|
return o.getter_bool("A2")
|
|
}
|
|
|
|
// SetA2 sets the value of the A2 parameter
|
|
func (o *outputs) SetA2(val bool) {
|
|
o.setter_bool("A2", val)
|
|
}
|
|
|
|
// GetA3 returns the value of the A3 parameter
|
|
func (o *outputs) GetA3() bool {
|
|
return o.getter_bool("A3")
|
|
}
|
|
|
|
// SetA3 sets the value of the A3 parameter
|
|
func (o *outputs) SetA3(val bool) {
|
|
o.setter_bool("A3", val)
|
|
}
|
|
|
|
// GetA4 returns the value of the A4 parameter
|
|
func (o *outputs) GetA4() bool {
|
|
return o.getter_bool("A4")
|
|
}
|
|
|
|
// SetA4 sets the value of the A4 parameter
|
|
func (o *outputs) SetA4(val bool) {
|
|
o.setter_bool("A4", val)
|
|
}
|
|
|
|
// GetA5 returns the value of the A5 parameter
|
|
func (o *outputs) GetA5() bool {
|
|
return o.getter_bool("A5")
|
|
}
|
|
|
|
// SetA5 sets the value of the A5 parameter
|
|
func (o *outputs) SetA5(val bool) {
|
|
o.setter_bool("A5", val)
|
|
}
|
|
|
|
// GetB1 returns the value of the B1 parameter
|
|
func (o *outputs) GetB1() bool {
|
|
return o.getter_bool("B1")
|
|
}
|
|
|
|
// SetB1 sets the value of the B1 parameter
|
|
func (o *outputs) SetB1(val bool) {
|
|
o.setter_bool("B1", val)
|
|
}
|
|
|
|
// GetB2 returns the value of the B2 parameter
|
|
func (o *outputs) GetB2() bool {
|
|
return o.getter_bool("B2")
|
|
}
|
|
|
|
// SetB2 sets the value of the B2 parameter
|
|
func (o *outputs) SetB2(val bool) {
|
|
o.setter_bool("B2", val)
|
|
}
|
|
|
|
// GetB3 returns the value of the B3 parameter
|
|
func (o *outputs) GetB3() bool {
|
|
return o.getter_bool("B3")
|
|
}
|
|
|
|
// SetB3 sets the value of the B3 parameter
|
|
func (o *outputs) SetB3(val bool) {
|
|
o.setter_bool("B3", val)
|
|
}
|