mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
774 B
28 lines
774 B
9 years ago
|
/*
|
||
|
*******************************************************************************
|
||
|
* Copyright (C) 2013-2014, International Business Machines Corporation and *
|
||
|
* others. All Rights Reserved. *
|
||
|
*******************************************************************************
|
||
|
*
|
||
|
* File RELDATEFMTTEST.CPP
|
||
|
*
|
||
|
*******************************************************************************
|
||
|
*/
|
||
|
#include "sharedbreakiterator.h"
|
||
|
#include "unicode/brkiter.h"
|
||
|
|
||
|
#if !UCONFIG_NO_BREAK_ITERATION
|
||
|
|
||
|
U_NAMESPACE_BEGIN
|
||
|
|
||
|
SharedBreakIterator::SharedBreakIterator(
|
||
|
BreakIterator *biToAdopt) : ptr(biToAdopt) { }
|
||
|
|
||
|
SharedBreakIterator::~SharedBreakIterator() {
|
||
|
delete ptr;
|
||
|
}
|
||
|
|
||
|
U_NAMESPACE_END
|
||
|
|
||
|
#endif /* #if !UCONFIG_NO_BREAK_ITERATION */
|