Split utf8 from quoted printable
This commit is contained in:
parent
644c3c42b6
commit
9b29d638d1
4 changed files with 4 additions and 0 deletions
|
@ -2,6 +2,7 @@ import {Converter} from "./converter";
|
|||
import {NativeLibraryWrapperService} from "../nativelibrarywrapper.service";
|
||||
|
||||
export class QuotedPrintableDecoder implements Converter {
|
||||
|
||||
constructor(private nativeLibraryWrapperService:NativeLibraryWrapperService) {
|
||||
}
|
||||
|
||||
|
|
|
@ -2,6 +2,7 @@ import {Converter} from "./converter";
|
|||
import {NativeLibraryWrapperService} from "../nativelibrarywrapper.service";
|
||||
|
||||
export class QuotedPrintableEncoder implements Converter {
|
||||
|
||||
constructor(private nativeLibraryWrapperService:NativeLibraryWrapperService) {
|
||||
}
|
||||
|
||||
|
|
|
@ -2,6 +2,7 @@ import {Converter} from "./converter";
|
|||
import {NativeLibraryWrapperService} from "../nativelibrarywrapper.service";
|
||||
|
||||
export class UTF8Decoder implements Converter {
|
||||
|
||||
constructor(private nativeLibraryWrapperService:NativeLibraryWrapperService) {
|
||||
}
|
||||
|
|
@ -2,6 +2,7 @@ import {Converter} from "./converter";
|
|||
import {NativeLibraryWrapperService} from "../nativelibrarywrapper.service";
|
||||
|
||||
export class UTF8Encoder implements Converter {
|
||||
|
||||
constructor(private nativeLibraryWrapperService:NativeLibraryWrapperService) {
|
||||
}
|
||||
|
Loading…
Reference in a new issue