Add love
[mono.git] / mcs / class / corlib / System.Text / UnicodeEncoding.cs
1 // -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*-
2 //
3 // System.Text.UnicodeEncoding.cs
4 //
5 // Author:
6 //   Sean MacIsaac (macisaac@ximian.com)
7 //
8 // (C) Ximian, Inc.  http://www.ximian.com
9 //
10
11
12 namespace System.Text {
13         
14         public class UnicodeEncoding : Encoding {
15                 public UnicodeEncoding() {
16                 }
17
18                 public UnicodeEncoding(bool bigEndian, bool byteOrderMark) {
19                 }
20
21                 public override int GetByteCount(char[] chars, int index, int count) {
22                         // FIXME
23                         return 0;
24                 }
25
26                 public override int GetBytes(char[] chars, int charIndex, int charCount, byte[] bytes, int byteIndex) {
27                         // FIXME
28                         return 0;
29                 }
30
31                 public override int GetChars(byte[] bytes, int byteIndex, int byteCount, char[] chars, int charIndex) {
32                         // FIXME
33                         return 0;
34                 }
35
36                 public override int GetMaxByteCount(int charCount) {
37                         // FIXME
38                         return 0;
39                 }
40
41                 public override int GetMaxCharCount(int byteCount) {
42                         // FIXME
43                         return 0;
44                 }
45         }
46 }