X-Git-Url: http://git.rot13.org/?a=blobdiff_plain;f=csharp%2Fcommon%2FComparator.cs;fp=csharp%2Fcommon%2FComparator.cs;h=450be93e4c90d3389d3b1dd980c10f0271ac1a72;hb=ec1d7dfa5fb34e69b0f65f936eec23c8a8b88b56;hp=0000000000000000000000000000000000000000;hpb=e8f7ac2a4615b772609002f4f903fda2e9474c5c;p=zxing.git diff --git a/csharp/common/Comparator.cs b/csharp/common/Comparator.cs new file mode 100755 index 00000000..450be93e --- /dev/null +++ b/csharp/common/Comparator.cs @@ -0,0 +1,28 @@ +/* +* Copyright 2007 ZXing authors +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ +using System; +namespace com.google.zxing.common +{ + + /// This is merely a clone of Comparator since it is not available in + /// CLDC 1.1 / MIDP 2.0. + /// + public interface Comparator + { + + int compare(System.Object o1, System.Object o2); + } +} \ No newline at end of file