You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
232 B

package Adl400Impl
var MeterAdl400 string = "AEM-ADL400"
var adl *Adl400Impl
func NewAdl400Impl() *Adl400Impl {
return &Adl400Impl{}
}
func GetAdl400Impl() *Adl400Impl {
if adl == nil {
adl = NewAdl400Impl()
}
return adl
}