Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
A
Actor Framework
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
cpp-libs
Actor Framework
Commits
010f3f6b
Commit
010f3f6b
authored
Apr 30, 2011
by
neverlord
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
serialization improvements
parent
123e61f7
Changes
3
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
776 additions
and
363 deletions
+776
-363
cppa/detail/to_uniform_name.hpp
cppa/detail/to_uniform_name.hpp
+2
-0
src/to_uniform_name.cpp
src/to_uniform_name.cpp
+173
-167
unit_testing/test__serialization.cpp
unit_testing/test__serialization.cpp
+601
-196
No files found.
cppa/detail/to_uniform_name.hpp
View file @
010f3f6b
...
...
@@ -2,10 +2,12 @@
#define TO_UNIFORM_NAME_HPP
#include <string>
#include <typeinfo>
namespace
cppa
{
namespace
detail
{
std
::
string
to_uniform_name
(
const
std
::
string
&
demangled_name
);
std
::
string
to_uniform_name
(
const
std
::
type_info
&
tinfo
);
}
}
// namespace cppa::detail
...
...
src/to_uniform_name.cpp
View file @
010f3f6b
...
...
@@ -211,4 +211,10 @@ std::string to_uniform_name(const std::string& dname)
return
r
;
}
std
::
string
to_uniform_name
(
const
std
::
type_info
&
tinfo
)
{
return
to_uniform_name
(
demangle
(
tinfo
.
name
()));
}
}
}
// namespace cppa::detail
unit_testing/test__serialization.cpp
View file @
010f3f6b
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment