=================================================================== RCS file: /home/cvs/OpenXM/src/OpenMath/ORG/openxm/tam/CMO_BIGFLOAT.java,v retrieving revision 1.1 retrieving revision 1.3 diff -u -p -r1.1 -r1.3 --- OpenXM/src/OpenMath/ORG/openxm/tam/CMO_BIGFLOAT.java 2000/09/12 07:05:05 1.1 +++ OpenXM/src/OpenMath/ORG/openxm/tam/CMO_BIGFLOAT.java 2000/12/03 12:40:39 1.3 @@ -1,5 +1,5 @@ /** - * $OpenXM$ + * $OpenXM: OpenXM/src/OpenMath/ORG/openxm/tam/CMO_BIGFLOAT.java,v 1.2 2000/09/13 06:32:42 tam Exp $ */ package ORG.openxm.tam; @@ -24,12 +24,16 @@ final public class CMO_BIGFLOAT extends CMO{ return CMO.BIGFLOAT; } - public void sendByObject(OpenXMconnection os) throws IOException{ + public boolean allowQ (int[] datacap) { + return CMO.allowQ_tag(datacap, DISCRIMINATOR()) && a.allowQ(datacap); + } + + public void sendByObject(OpenXMstream os) throws IOException{ a.sendByObject(os); e.sendByObject(os); } - static protected CMO receive(OpenXMconnection is) throws IOException{ + static protected CMO receive(OpenXMstream is) throws IOException{ CMO_ZZ a,e; a = (CMO_ZZ) CMO_ZZ.receive(is);