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