2016-05-20 00:40:31 +01:00
|
|
|
export abstract class BaseXmlComponent {
|
|
|
|
protected rootKey: string;
|
|
|
|
|
|
|
|
constructor(rootKey: string) {
|
|
|
|
this.rootKey = rootKey;
|
|
|
|
}
|
|
|
|
|
|
|
|
abstract replaceKey(): void;
|
|
|
|
clearVariables(): void {
|
2017-03-07 22:35:20 +00:00
|
|
|
}
|
2016-05-20 00:40:31 +01:00
|
|
|
}
|