import { IPSCounterType } from './ipscounter-type'; import { PSModelObjectImpl } from '../../psmodel-object-impl'; export class PSCounterTypeImpl extends PSModelObjectImpl implements IPSCounterType { get memo(): string { return this.M.memo; } get name(): string { return this.M.name; } get cls(): string { return 'PSCounterTypeImpl'; } instanceof(cls: string): boolean { if (cls == 'control.counter.IPSCounterType') return true; return super.instanceof(cls); } }