|           Line data    Source code 
       1             : // © 2016 and later: Unicode, Inc. and others.
       2             : // License & terms of use: http://www.unicode.org/copyright.html
       3             : /*
       4             : *******************************************************************************
       5             : * Copyright (C) 2015-2016, International Business Machines
       6             : * Corporation and others.  All Rights Reserved.
       7             : *******************************************************************************
       8             : * resource.cpp
       9             : *
      10             : * created on: 2015nov04
      11             : * created by: Markus W. Scherer
      12             : */
      13             : 
      14             : #include "resource.h"
      15             : 
      16             : U_NAMESPACE_BEGIN
      17             : 
      18           0 : ResourceValue::~ResourceValue() {}
      19             : 
      20           0 : ResourceSink::~ResourceSink() {}
      21             : 
      22             : U_NAMESPACE_END
 |