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
4/*************************************************************************
5 * Copyright (C) 1995-2019, Rene Brun and Fons Rademakers. *
6 * All rights reserved. *
7 * *
8 * For the licensing terms see $ROOTSYS/LICENSE. *
9 * For the list of contributors see $ROOTSYS/README/CREDITS. *
10 *************************************************************************/
11
12#ifndef ROOT7_RBrowserReply
13#define ROOT7_RBrowserReply
14
15#include <string>
16#include <vector>
18
19namespace ROOT {
20
21/** \class ROOT::RBrowserReply
22\ingroup rbrowser
23\brief Reply on browser request
24*/
25
27public:
28 std::vector<std::string> path; ///< reply path
29 int nchilds{0}; ///< total number of childs in the node
30 int first{0}; ///< first node in returned list
31 std::vector<const Browsable::RItem *> nodes; ///< list of pointers, no ownership!
32};
33
34} // namespace ROOT
35
36#endif
37
38
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
Namespace for new ROOT classes and functions.