Logo ROOT  
Reference Guide
 
Loading...
Searching...
No Matches
RBrowserReply.hxx
Go to the documentation of this file.
1// Authors: Bertrand Bellenot <bertrand.bellenot@cern.ch> Sergey Linev <S.Linev@gsi.de>
2// Date: 2019-02-28
3// Warning: This is part of the ROOT 7 prototype! It will change without notice. It might trigger earthquakes. Feedback is welcome!
4
5/*************************************************************************
6 * Copyright (C) 1995-2019, Rene Brun and Fons Rademakers. *
7 * All rights reserved. *
8 * *
9 * For the licensing terms see $ROOTSYS/LICENSE. *
10 * For the list of contributors see $ROOTSYS/README/CREDITS. *
11 *************************************************************************/
12
13#ifndef ROOT7_RBrowserReply
14#define ROOT7_RBrowserReply
15
16#include <string>
17#include <vector>
19
20namespace ROOT {
21
22/** \class ROOT::RBrowserReply
23\ingroup rbrowser
24\brief Reply on browser request
25*/
26
28public:
29 std::vector<std::string> path; ///< reply path
30 int nchilds{0}; ///< total number of childs in the node
31 int first{0}; ///< first node in returned list
32 std::vector<const Browsable::RItem *> nodes; ///< list of pointers, no ownership!
33};
34
35} // namespace ROOT
36
37#endif
38
39
Reply on browser request.
std::vector< std::string > path
reply path
std::vector< const Browsable::RItem * > nodes
list of pointers, no ownership!
int first
first node in returned list
int nchilds
total number of childs in the node
tbb::task_arena is an alias of tbb::interface7::task_arena, which doesn't allow to forward declare tb...