Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
R
Root
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Admin message
为了安全,强烈建议开启2FA双因子认证:User Settings -> Account -> Enable two-factor authentication!!!
Show more breadcrumbs
cxwx
Root
Commits
42e429c9
Commit
42e429c9
authored
5 years ago
by
Sergey Linev
Browse files
Options
Downloads
Patches
Plain Diff
[rbrowser] add missing includes to RBrowserItem.hxx
parent
d14c96fd
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
gui/browserv7/inc/ROOT/RBrowser.hxx
+1
-1
1 addition, 1 deletion
gui/browserv7/inc/ROOT/RBrowser.hxx
gui/browserv7/inc/ROOT/RBrowserItem.hxx
+11
-10
11 additions, 10 deletions
gui/browserv7/inc/ROOT/RBrowserItem.hxx
with
12 additions
and
11 deletions
gui/browserv7/inc/ROOT/RBrowser.hxx
+
1
−
1
View file @
42e429c9
...
@@ -64,7 +64,7 @@ protected:
...
@@ -64,7 +64,7 @@ protected:
std
::
string
fDescPath
;
///<! last scanned directory
std
::
string
fDescPath
;
///<! last scanned directory
std
::
vector
<
RRootFileItem
>
fDesc
;
///<! plain list of current directory
std
::
vector
<
RRootFileItem
>
fDesc
;
///<! plain list of current directory
std
::
vector
<
RRootFileItem
*>
fSorted
;
///<! current sorted list (no ownership)
std
::
vector
<
RRootFileItem
*>
fSorted
;
///<! current sorted list (no ownership)
std
::
shared_ptr
<
RWebWindow
>
fWebWindow
;
///<! web window to show geometry
std
::
shared_ptr
<
RWebWindow
>
fWebWindow
;
///<! web window to show geometry
...
...
This diff is collapsed.
Click to expand it.
gui/browserv7/inc/ROOT/RBrowserItem.hxx
+
11
−
10
View file @
42e429c9
...
@@ -17,19 +17,21 @@
...
@@ -17,19 +17,21 @@
#ifndef ROOT7_RBrowserItem
#ifndef ROOT7_RBrowserItem
#define ROOT7_RBrowserItem
#define ROOT7_RBrowserItem
#include
<string>
#include
<vector>
namespace
ROOT
{
namespace
ROOT
{
namespace
Experimental
{
namespace
Experimental
{
/** Request send from client to get content of path element */
/** Request send from client to get content of path element */
class
RBrowserRequest
{
class
RBrowserRequest
{
public:
public:
std
::
string
path
;
///< requested path
std
::
string
path
;
///< requested path
int
first
{
0
};
///< first child to request
int
first
{
0
};
///< first child to request
int
number
{
0
};
///< number of childs to request, 0 - all childs
int
number
{
0
};
///< number of childs to request, 0 - all childs
std
::
string
sort
;
///< kind of sorting
std
::
string
sort
;
///< kind of sorting
};
};
/** Representation of single item in the browser */
/** Representation of single item in the browser */
class
RBrowserItem
{
class
RBrowserItem
{
protected:
protected:
...
@@ -51,13 +53,12 @@ public:
...
@@ -51,13 +53,12 @@ public:
/** Reply on browser request */
/** Reply on browser request */
class
RBrowserReply
{
class
RBrowserReply
{
public:
public:
std
::
string
path
;
///< reply path
std
::
string
path
;
///< reply path
int
nchilds
{
0
};
///< total number of childs in the node
int
nchilds
{
0
};
///< total number of childs in the node
int
first
{
0
};
///< first node in returned list
int
first
{
0
};
///< first node in returned list
std
::
vector
<
RBrowserItem
*>
nodes
;
///< list of pointers, no ownership!
std
::
vector
<
RBrowserItem
*>
nodes
;
///< list of pointers, no ownership!
};
};
}
// namespace Experimental
}
// namespace Experimental
}
// namespace ROOT
}
// namespace ROOT
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment