/*
**********************************************************************
-* Copyright (c) 2004, International Business Machines
+* Copyright (c) 2004-2006, International Business Machines
* Corporation and others. All Rights Reserved.
**********************************************************************
* Author: Alan Liu
#include "unicode/format.h"
+/**
+ * \file
+ * \brief C++ API: Formatter for measure objects.
+ */
+
U_NAMESPACE_BEGIN
/**
+ *
* A formatter for measure objects. This is an abstract base class.
*
* <p>To format or parse a measure object, first create a formatter
*
* @see Format
* @author Alan Liu
- * @draft ICU 3.0
+ * @stable ICU 3.0
*/
class U_I18N_API MeasureFormat : public Format {
* @param locale desired locale
* @param ec input-output error code
* @return a formatter object, or NULL upon error
- * @draft ICU 3.0
+ * @stable ICU 3.0
*/
static MeasureFormat* U_EXPORT2 createCurrencyFormat(const Locale& locale,
UErrorCode& ec);
* locale.
* @param ec input-output error code
* @return a formatter object, or NULL upon error
- * @draft ICU 3.0
+ * @stable ICU 3.0
*/
static MeasureFormat* U_EXPORT2 createCurrencyFormat(UErrorCode& ec);
/**
* Default constructor.
- * @draft ICU 3.0
+ * @stable ICU 3.0
*/
MeasureFormat();
};