Logo ROOT  
Reference Guide
 
Loading...
Searching...
No Matches
RBrowserRequest.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_RBrowserRequest
14#define ROOT7_RBrowserRequest
15
16#include <string>
17#include <vector>
18
19namespace ROOT {
20
21/** \class ROOT::RBrowserRequest
22\ingroup rbrowser
23\brief Request send from client to get content of path element
24*/
25
27public:
28 std::vector<std::string> path; ///< requested path
29 int first{0}; ///< first child to request
30 int number{0}; ///< number of childs to request, 0 - all childs
31 std::string sort; ///< kind of sorting
32 bool reverse{false}; ///< reverse item order
33 bool hidden{false}; ///< show hidden files
34 bool reload{false}; ///< force items reload
35 int lastcycle{0}; ///< show only last cycle, -1 - off, 0 - not change, +1 on,
36 std::string regex; ///< applied regex
37};
38
39} // namespace ROOT
40
41#endif
42
43
Request send from client to get content of path element.
int lastcycle
show only last cycle, -1 - off, 0 - not change, +1 on,
bool hidden
show hidden files
int number
number of childs to request, 0 - all childs
bool reverse
reverse item order
std::string sort
kind of sorting
std::vector< std::string > path
requested path
bool reload
force items reload
int first
first child to request
std::string regex
applied regex
tbb::task_arena is an alias of tbb::interface7::task_arena, which doesn't allow to forward declare tb...