diff options
author | bob <bcz@cs.brown.edu> | 2019-03-20 18:00:39 -0400 |
---|---|---|
committer | bob <bcz@cs.brown.edu> | 2019-03-20 18:00:39 -0400 |
commit | a16e6592caafb601b59c3d9f7609e8c1af231eba (patch) | |
tree | e732e34c5a9fc371bf328fdd35a08ddd196bf6af /src/client/northstar/core/BaseObject.ts | |
parent | 208a57b15e6b415659311873431dbe9d5b8d8021 (diff) |
initial
Diffstat (limited to 'src/client/northstar/core/BaseObject.ts')
-rw-r--r-- | src/client/northstar/core/BaseObject.ts | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/client/northstar/core/BaseObject.ts b/src/client/northstar/core/BaseObject.ts new file mode 100644 index 000000000..e9e766e31 --- /dev/null +++ b/src/client/northstar/core/BaseObject.ts @@ -0,0 +1,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 { + } +}
\ No newline at end of file |