]> git.saurik.com Git - apple/icu.git/blobdiff - icuSources/i18n/unicode/fmtable.h
ICU-64260.0.1.tar.gz
[apple/icu.git] / icuSources / i18n / unicode / fmtable.h
index 6ac32214b1f5c6d6aeb2f09e228d02eaca397539..e825cb693c83687870c32f9a318f34cd6f30c780 100644 (file)
 U_NAMESPACE_BEGIN
 
 class CharString;
-class DigitList;
 namespace number {
 namespace impl {
 class DecimalQuantity;
 }
 }
 
-/**
- * \def UNUM_INTERNAL_STACKARRAY_SIZE
- * @internal
- */
-#if U_PLATFORM == U_PF_OS400
-#define UNUM_INTERNAL_STACKARRAY_SIZE 144
-#else
-#define UNUM_INTERNAL_STACKARRAY_SIZE 128
-#endif
-
 /**
  * Formattable objects can be passed to the Format class or
  * its subclasses for formatting.  Formattable is a thin wrapper
@@ -651,21 +640,6 @@ public:
 #endif  /* U_HIDE_DEPRECATED_API */
 
 #ifndef U_HIDE_INTERNAL_API
-    /**
-     * Internal function, do not use.
-     * TODO:  figure out how to make this be non-public.
-     *        NumberFormat::format(Formattable, ...
-     *        needs to get at the DigitList, if it exists, for
-     *        big decimal formatting.
-     *  @internal
-     */
-    DigitList *getDigitList() const { return fDecimalNum;}
-
-    /**
-     *  @internal
-     */
-    DigitList *getInternalDigitList();
-
     /**
      * Internal function, do not use.
      * TODO:  figure out how to make this be non-public.
@@ -682,18 +656,10 @@ public:
      */
     void populateDecimalQuantity(number::impl::DecimalQuantity& output, UErrorCode& status) const;
 
-    /**
-     *  Adopt, and set value from, a DigitList
-     *     Internal Function, do not use.
-     *  @param dl the Digit List to be adopted
-     *  @internal
-     */
-    void adoptDigitList(DigitList *dl);
-
     /**
      *  Adopt, and set value from, a DecimalQuantity
      *     Internal Function, do not use.
-     *  @param dl the DecimalQuantity to be adopted
+     *  @param dq the DecimalQuantity to be adopted
      *  @internal
      */
     void adoptDecimalQuantity(number::impl::DecimalQuantity *dq);
@@ -736,10 +702,6 @@ private:
 
     CharString           *fDecimalStr;
 
-    DigitList            *fDecimalNum;
-
-    char                fStackData[UNUM_INTERNAL_STACKARRAY_SIZE]; // must be big enough for DigitList
-
     number::impl::DecimalQuantity *fDecimalQuantity;
 
     Type                fType;