コード例 #1
0
ファイル: OcrRect.cs プロジェクト: ThomasEcherer/elo
 public OcrRect(OcrRect rhs) : base(rhs)
 {
     this.leftValue   = rhs.leftValue;
     this.topValue    = rhs.topValue;
     this.rightValue  = rhs.rightValue;
     this.bottomValue = rhs.bottomValue;
 }
コード例 #2
0
        public override void write(Object obj1, BOutput bout1, long version)
        {
            base.write(obj1, bout1, version);
            OcrRect    obj  = (OcrRect)obj1;
            BOutputBin bout = (BOutputBin)bout1;
            BBufferBin bbuf = bout.bbuf;

            // checkpoint byps.gen.cs.PrintContext:494
            bbuf.putInt(obj.bottom);
            // checkpoint byps.gen.cs.PrintContext:494
            bbuf.putInt(obj.left);
            // checkpoint byps.gen.cs.PrintContext:494
            bbuf.putInt(obj.right);
            // checkpoint byps.gen.cs.PrintContext:494
            bbuf.putInt(obj.top);
        }
コード例 #3
0
        public override Object read(Object obj1, BInput bin1, long version)
        {
            BInputBin bin = (BInputBin)bin1;
            OcrRect   obj = (OcrRect)(obj1 != null ? obj1 : bin.onObjectCreated(new OcrRect()));

            base.read(obj, bin1, version);
            BBufferBin bbuf = bin.bbuf;

            // checkpoint byps.gen.cs.PrintContext:449
            obj.bottom = bbuf.getInt();
            // checkpoint byps.gen.cs.PrintContext:449
            obj.left = bbuf.getInt();
            // checkpoint byps.gen.cs.PrintContext:449
            obj.right = bbuf.getInt();
            // checkpoint byps.gen.cs.PrintContext:449
            obj.top = bbuf.getInt();

            return(obj);
        }