Skip to content

Commit

Permalink
reupload app.info.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
Julian Pömp committed Oct 18, 2018
1 parent 5b1a161 commit 3bdb796
Showing 1 changed file with 50 additions and 0 deletions.
50 changes: 50 additions & 0 deletions src/app/app.info.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
import {
AnnotJSONConverter,
Converter,
CTMConverter,
PartiturConverter,
PraatTableConverter,
PraatTextgridConverter
} from './obj/Converters';

export class AppInfo {
static get converters(): {
obj: Converter,
color: string
}[] {
return this._converters;
}

static get version(): string {
return this._version;
}

private static _version = '1.0.0';
public static readonly lastUpdated = '2018-10-02 12:30';

private static _converters: {
obj: Converter;
color: string;
}[] = [
{
obj: new CTMConverter(),
color: 'red'
},
{
obj: new PartiturConverter(),
color: 'forestgreen'
},
{
obj: new AnnotJSONConverter(),
color: 'gray'
},
{
obj: new PraatTextgridConverter(),
color: 'orange'
},
{
obj: new PraatTableConverter(),
color: 'purple'
}
];
}

0 comments on commit 3bdb796

Please sign in to comment.