aboutsummaryrefslogtreecommitdiff
path: root/src/client/northstar/core/BaseObject.ts
blob: e9e766e31d7c6f7944f3b2784dcfee5930721b12 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
import { IEquatable } from '../utils/IEquatable'
import { IDisposable } from '../utils/IDisposable'

export class BaseObject implements IEquatable, IDisposable {

    public Equals(other: Object): boolean {
        return this == other;
    }

    public Dispose(): void {
    }
}