|
From: Frank V. C. <fr...@us...> - 2000-10-23 04:05:57
|
Update of /cvsroot/corelinux/clfw/clfw In directory slayer.i.sourceforge.net:/tmp/cvs-serv17389/clfw Modified Files: Integer.hpp Makefile.am UnsignedInteger.hpp Added Files: SignedNumber.hpp UnsignedNumber.hpp UnsignedShortInteger.hpp Log Message: 117451 117452 ***** Error reading new file: (2, 'No such file or directory') ***** Error reading new file: (2, 'No such file or directory') ***** Error reading new file: (2, 'No such file or directory') Index: Integer.hpp =================================================================== RCS file: /cvsroot/corelinux/clfw/clfw/Integer.hpp,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** Integer.hpp 2000/10/14 11:40:52 1.1 --- Integer.hpp 2000/10/23 04:05:53 1.2 *************** *** 26,31 **** #endif ! #if !defined(__NUMBER_HPP) ! #include <Number.hpp> #endif --- 26,31 ---- #endif ! #if !defined(__SIGNEDNUMBER_HPP) ! #include <SignedNumber.hpp> #endif *************** *** 39,43 **** */ ! class Integer : public Number { DECLARE_METATYPEMEMBERS( Integer ); --- 39,43 ---- */ ! class Integer : public SignedNumber { DECLARE_METATYPEMEMBERS( Integer ); Index: Makefile.am =================================================================== RCS file: /cvsroot/corelinux/clfw/clfw/Makefile.am,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -r1.12 -r1.13 *** Makefile.am 2000/10/22 14:46:38 1.12 --- Makefile.am 2000/10/23 04:05:53 1.13 *************** *** 23,30 **** --- 23,33 ---- Boolean.hpp \ Number.hpp \ + UnsignedNumber.hpp \ + SignedNumber.hpp \ RealNumber.hpp \ Integer.hpp \ ShortInteger.hpp \ UnsignedInteger.hpp \ + UnsignedShortInteger.hpp \ Makefile.am Index: UnsignedInteger.hpp =================================================================== RCS file: /cvsroot/corelinux/clfw/clfw/UnsignedInteger.hpp,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** UnsignedInteger.hpp 2000/10/19 12:14:39 1.1 --- UnsignedInteger.hpp 2000/10/23 04:05:53 1.2 *************** *** 26,31 **** #endif ! #if !defined(__INTEGER_HPP) ! #include <Integer.hpp> #endif --- 26,31 ---- #endif ! #if !defined(__UNSIGNEDNUMBER_HPP) ! #include <UnsignedNumber.hpp> #endif *************** *** 39,43 **** */ ! class UnsignedInteger : public Integer { DECLARE_METATYPEMEMBERS( UnsignedInteger ); --- 39,43 ---- */ ! class UnsignedInteger : public UnsignedNumber { DECLARE_METATYPEMEMBERS( UnsignedInteger ); *************** *** 94,98 **** */ //@{ ! DECLARE_INSTANCEDATA_FROMBASE(UnsignedInt,Value,Int,Integer); //@} --- 94,98 ---- */ //@{ ! DECLARE_INSTANCEDATA( UnsignedInt, Value ); //@} |