aboutsummaryrefslogtreecommitdiff
path: root/examples/cxx/serializer/library/library.map
diff options
context:
space:
mode:
Diffstat (limited to 'examples/cxx/serializer/library/library.map')
-rw-r--r--examples/cxx/serializer/library/library.map22
1 files changed, 22 insertions, 0 deletions
diff --git a/examples/cxx/serializer/library/library.map b/examples/cxx/serializer/library/library.map
new file mode 100644
index 0000000..901fb7d
--- /dev/null
+++ b/examples/cxx/serializer/library/library.map
@@ -0,0 +1,22 @@
+# file : examples/cxx/serializer/library/library.map
+# author : Boris Kolpackov <boris@codesynthesis.com>
+# copyright : not copyrighted - public domain
+
+namespace http://www.codesynthesis.com/library
+{
+ include "library.hxx";
+
+ # Use the actual type instead of a typedef. The compiler
+ # has no way of knowing that isbn and unsigned int are
+ # the same C++ types and may generate clashing function
+ # signatures if we use the typedef alias here.
+ #
+ isbn "unsigned int" "unsigned int";
+
+ title "const library::title&";
+ genre library::genre library::genre;
+ person "const library::person&";
+ author "const library::author&";
+ book "const library::book&";
+ catalog "const library::catalog&";
+}