Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
W
wax
Manage
Activity
Members
Labels
Plan
Issues
32
Issue boards
Milestones
Wiki
Code
Merge requests
4
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container 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
Show more breadcrumbs
hive
wax
Merge requests
!220
Implement binary view metadata retrieval
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Implement binary view metadata retrieval
tm-implement-binary-view-meta-retrieval
into
develop
Overview
0
Commits
17
Pipelines
29
Changes
28
Merged
Mateusz Tyszczak
requested to merge
tm-implement-binary-view-meta-retrieval
into
develop
2 months ago
Overview
0
Commits
17
Pipelines
29
Changes
28
Expand
0
0
Merge request reports
Compare
develop
version 28
93d02c65
2 months ago
version 27
4314b798
2 months ago
version 26
50c92e90
2 months ago
version 25
f8300380
2 months ago
version 24
2df4492e
2 months ago
version 23
831f87b8
2 months ago
version 22
2450f304
2 months ago
version 21
0f6be200
2 months ago
version 20
f9ad3559
2 months ago
version 19
16134abe
2 months ago
version 18
32f39ce7
2 months ago
version 17
bb0d0d25
2 months ago
version 16
6cfab4a2
2 months ago
version 15
3a4c8e42
2 months ago
version 14
98cd6494
2 months ago
version 13
916a7e39
2 months ago
version 12
5e10c47c
2 months ago
version 11
fc46cfb0
2 months ago
version 10
4e03aa3d
2 months ago
version 9
5fb2ea8f
2 months ago
version 8
a738f232
2 months ago
version 7
4e0a53e9
2 months ago
version 6
73e102ea
2 months ago
version 5
1d03bf54
2 months ago
version 4
1cc24826
2 months ago
version 3
3d47e3f4
2 months ago
version 2
1a23c481
2 months ago
version 1
d97abfc5
2 months ago
develop (base)
and
latest version
latest version
fb0f8910
17 commits,
2 months ago
version 28
93d02c65
15 commits,
2 months ago
version 27
4314b798
14 commits,
2 months ago
version 26
50c92e90
13 commits,
2 months ago
version 25
f8300380
12 commits,
2 months ago
version 24
2df4492e
11 commits,
2 months ago
version 23
831f87b8
23 commits,
2 months ago
version 22
2450f304
19 commits,
2 months ago
version 21
0f6be200
18 commits,
2 months ago
version 20
f9ad3559
18 commits,
2 months ago
version 19
16134abe
17 commits,
2 months ago
version 18
32f39ce7
17 commits,
2 months ago
version 17
bb0d0d25
16 commits,
2 months ago
version 16
6cfab4a2
15 commits,
2 months ago
version 15
3a4c8e42
15 commits,
2 months ago
version 14
98cd6494
16 commits,
2 months ago
version 13
916a7e39
15 commits,
2 months ago
version 12
5e10c47c
15 commits,
2 months ago
version 11
fc46cfb0
14 commits,
2 months ago
version 10
4e03aa3d
13 commits,
2 months ago
version 9
5fb2ea8f
12 commits,
2 months ago
version 8
a738f232
11 commits,
2 months ago
version 7
4e0a53e9
7 commits,
2 months ago
version 6
73e102ea
7 commits,
2 months ago
version 5
1d03bf54
6 commits,
2 months ago
version 4
1cc24826
5 commits,
2 months ago
version 3
3d47e3f4
4 commits,
2 months ago
version 2
1a23c481
3 commits,
2 months ago
version 1
d97abfc5
2 commits,
2 months ago
28 files
+
1540
−
6752
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
28
Search (e.g. *.vue) (Ctrl+P)
core/binary_view/node_types.hpp
0 → 100644
+
33
−
0
Options
#pragma once
#include
<string>
namespace
cpp
{
namespace
binary_view
{
enum
class
node_type_enum
{
object
,
array
,
scalar
};
struct
object_node
{
inline
static
std
::
string
name
{
"object"
};
static
constexpr
node_type_enum
value
{
node_type_enum
::
object
};
};
struct
array_node
{
inline
static
std
::
string
name
{
"array"
};
static
constexpr
node_type_enum
value
{
node_type_enum
::
array
};
};
struct
scalar_node
{
inline
static
std
::
string
name
{
"scalar"
};
static
constexpr
node_type_enum
value
{
node_type_enum
::
scalar
};
};
}}
// namespace cpp::binary_view
Loading