Skip to content

Commit d6f6eb1

Browse files
committed
[ntuple] add RNTupleUtil.hxx compatibility header
1 parent cb68946 commit d6f6eb1

File tree

2 files changed

+25
-0
lines changed

2 files changed

+25
-0
lines changed

tree/ntuple/CMakeLists.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@ HEADERS
3838
ROOT/RNTupleReader.hxx
3939
ROOT/RNTupleSerialize.hxx
4040
ROOT/RNTupleTypes.hxx
41+
ROOT/RNTupleUtil.hxx
4142
ROOT/RNTupleUtils.hxx
4243
ROOT/RNTupleView.hxx
4344
ROOT/RNTupleWriteOptions.hxx

tree/ntuple/inc/ROOT/RNTupleUtil.hxx

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
/// \file ROOT/RNTupleUtil.hxx
2+
/// \ingroup NTuple
3+
/// \author Jakob Blomer <jblomer@cern.ch>
4+
/// \date 2025-07-31
5+
6+
/*************************************************************************
7+
* Copyright (C) 1995-2025, Rene Brun and Fons Rademakers. *
8+
* All rights reserved. *
9+
* *
10+
* For the licensing terms see $ROOTSYS/LICENSE. *
11+
* For the list of contributors see $ROOTSYS/README/CREDITS. *
12+
*************************************************************************/
13+
14+
#ifndef ROOT_RNTupleUtil
15+
#define ROOT_RNTupleUtil
16+
17+
#if !defined(R__NO_DEPRECATION) && !defined(__CLING__)
18+
#warning "<ROOT/RNTupleUtil.hxx> is deprecated and will be removed in ROOT v6.40. Use <ROOT/RNTupleTypes.hxx>."
19+
#endif
20+
21+
#include <ROOT/RNTupleTypes.hxx>
22+
#include <ROOT/RNTupleUtils.hxx>
23+
24+
#endif

0 commit comments

Comments
 (0)