FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
cpptoml/parse.cpp at master · Thomasquared/cpptoml · GitHub
Thomasquared
/
cpptoml
Public
forked from
skystrife/cpptoml
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
cpptoml
/
parse.cpp
Copy path
More file actions
More file actions
Latest commit
History
History
History
26 lines (22 loc) · 528 Bytes
Breadcrumbs
cpptoml
/
parse.cpp
Copy path
File metadata and controls
26 lines (22 loc) · 528 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#
include
"
cpptoml.h
"
#
include
<
iostream
>
#
include
<
cassert
>
int
main
(
int
argc,
char
** argv)
{
if
(argc <
2
)
{
std::cout <<
"
Usage:
"
<< argv[
0
] <<
"
filename
"
<< std::endl;
return
1
;
}
try
{
std::shared_ptr<cpptoml::table> g =
cpptoml::parse_file
(argv[
1
]);
std::cout << (*g) << std::endl;
}
catch
(
const
cpptoml::parse_exception& e)
{
std::cerr <<
"
Failed to parse
"
<< argv[
1
] <<
"
:
"
<< e.
what
() << std::endl;
return
1
;
}
return
0
;
}
Back
|
FazBrowse Home
|
New Git URL