]>
git.saurik.com Git - apple/icu.git/blob - icuSources/i18n/sharedbreakiterator.cpp
1 // © 2016 and later: Unicode, Inc. and others.
2 // License & terms of use: http://www.unicode.org/copyright.html
4 *******************************************************************************
5 * Copyright (C) 2013-2014, International Business Machines Corporation and *
6 * others. All Rights Reserved. *
7 *******************************************************************************
9 * File RELDATEFMTTEST.CPP
11 *******************************************************************************
13 #include "sharedbreakiterator.h"
14 #include "unicode/brkiter.h"
16 #if !UCONFIG_NO_BREAK_ITERATION
20 SharedBreakIterator::SharedBreakIterator(
21 BreakIterator
*biToAdopt
) : ptr(biToAdopt
) { }
23 SharedBreakIterator::~SharedBreakIterator() {
29 #endif /* #if !UCONFIG_NO_BREAK_ITERATION */