aboutsummaryrefslogtreecommitdiff
path: root/examples/cxx/serializer
diff options
context:
space:
mode:
Diffstat (limited to 'examples/cxx/serializer')
-rw-r--r--examples/cxx/serializer/hello/driver.cxx1
-rw-r--r--examples/cxx/serializer/hello/makefile1
-rw-r--r--examples/cxx/serializer/library/driver.cxx1
-rw-r--r--examples/cxx/serializer/library/library-simpl-mixin.cxx1
-rw-r--r--examples/cxx/serializer/library/library-simpl-mixin.hxx1
-rw-r--r--examples/cxx/serializer/library/library-simpl-tiein.cxx1
-rw-r--r--examples/cxx/serializer/library/library-simpl-tiein.hxx1
-rw-r--r--examples/cxx/serializer/library/library.hxx1
-rw-r--r--examples/cxx/serializer/library/library.map1
-rw-r--r--examples/cxx/serializer/library/makefile1
-rw-r--r--examples/cxx/serializer/makefile1
-rw-r--r--examples/cxx/serializer/minimal/driver.cxx1
-rw-r--r--examples/cxx/serializer/minimal/makefile1
-rw-r--r--examples/cxx/serializer/minimal/people-simpl-mixin.hxx1
-rw-r--r--examples/cxx/serializer/minimal/people-simpl-tiein.hxx1
-rw-r--r--examples/cxx/serializer/minimal/people.hxx1
-rw-r--r--examples/cxx/serializer/minimal/people.map1
-rw-r--r--examples/cxx/serializer/polymorphism/driver.cxx1
-rw-r--r--examples/cxx/serializer/polymorphism/makefile1
-rw-r--r--examples/cxx/serializer/polymorphism/supermen-simpl-mixin.cxx1
-rw-r--r--examples/cxx/serializer/polymorphism/supermen-simpl-mixin.hxx1
-rw-r--r--examples/cxx/serializer/polymorphism/supermen-simpl-tiein.cxx1
-rw-r--r--examples/cxx/serializer/polymorphism/supermen-simpl-tiein.hxx1
-rw-r--r--examples/cxx/serializer/polymorphism/supermen.hxx1
-rw-r--r--examples/cxx/serializer/polymorphism/supermen.map1
-rw-r--r--examples/cxx/serializer/polyroot/driver.cxx1
-rw-r--r--examples/cxx/serializer/polyroot/makefile1
-rw-r--r--examples/cxx/serializer/polyroot/supermen-simpl-mixin.cxx1
-rw-r--r--examples/cxx/serializer/polyroot/supermen-simpl-mixin.hxx1
-rw-r--r--examples/cxx/serializer/polyroot/supermen-simpl-tiein.cxx1
-rw-r--r--examples/cxx/serializer/polyroot/supermen-simpl-tiein.hxx1
-rw-r--r--examples/cxx/serializer/polyroot/supermen.hxx1
-rw-r--r--examples/cxx/serializer/polyroot/supermen.map1
-rw-r--r--examples/cxx/serializer/wildcard/driver.cxx1
-rw-r--r--examples/cxx/serializer/wildcard/email.hxx1
-rw-r--r--examples/cxx/serializer/wildcard/email.map1
-rw-r--r--examples/cxx/serializer/wildcard/makefile1
37 files changed, 0 insertions, 37 deletions
diff --git a/examples/cxx/serializer/hello/driver.cxx b/examples/cxx/serializer/hello/driver.cxx
index c3eba63..8482efa 100644
--- a/examples/cxx/serializer/hello/driver.cxx
+++ b/examples/cxx/serializer/hello/driver.cxx
@@ -1,5 +1,4 @@
// file : examples/cxx/serializer/hello/driver.cxx
-// author : Boris Kolpackov <boris@codesynthesis.com>
// copyright : not copyrighted - public domain
#include <string>
diff --git a/examples/cxx/serializer/hello/makefile b/examples/cxx/serializer/hello/makefile
index 2b657c8..90ec6c8 100644
--- a/examples/cxx/serializer/hello/makefile
+++ b/examples/cxx/serializer/hello/makefile
@@ -1,5 +1,4 @@
# file : examples/cxx/serializer/hello/makefile
-# author : Boris Kolpackov <boris@codesynthesis.com>
# copyright : Copyright (c) 2005-2011 Code Synthesis Tools CC
# license : GNU GPL v2 + exceptions; see accompanying LICENSE file
diff --git a/examples/cxx/serializer/library/driver.cxx b/examples/cxx/serializer/library/driver.cxx
index 01e7deb..a96a9d3 100644
--- a/examples/cxx/serializer/library/driver.cxx
+++ b/examples/cxx/serializer/library/driver.cxx
@@ -1,5 +1,4 @@
// file : examples/cxx/serializer/library/driver.cxx
-// author : Boris Kolpackov <boris@codesynthesis.com>
// copyright : not copyrighted - public domain
#include <iostream>
diff --git a/examples/cxx/serializer/library/library-simpl-mixin.cxx b/examples/cxx/serializer/library/library-simpl-mixin.cxx
index 7e82fe6..6b5406a 100644
--- a/examples/cxx/serializer/library/library-simpl-mixin.cxx
+++ b/examples/cxx/serializer/library/library-simpl-mixin.cxx
@@ -1,5 +1,4 @@
// file : examples/cxx/serializer/library/library-simpl-mixin.cxx
-// author : Boris Kolpackov <boris@codesynthesis.com>
// copyright : not copyrighted - public domain
#include "library-simpl-mixin.hxx"
diff --git a/examples/cxx/serializer/library/library-simpl-mixin.hxx b/examples/cxx/serializer/library/library-simpl-mixin.hxx
index c4438d4..11b981b 100644
--- a/examples/cxx/serializer/library/library-simpl-mixin.hxx
+++ b/examples/cxx/serializer/library/library-simpl-mixin.hxx
@@ -1,5 +1,4 @@
// file : examples/cxx/serializer/library/library-simpl-mixin.hxx
-// author : Boris Kolpackov <boris@codesynthesis.com>
// copyright : not copyrighted - public domain
#ifndef LIBRARY_SIMPL_HXX
diff --git a/examples/cxx/serializer/library/library-simpl-tiein.cxx b/examples/cxx/serializer/library/library-simpl-tiein.cxx
index 91a5c23..258195b 100644
--- a/examples/cxx/serializer/library/library-simpl-tiein.cxx
+++ b/examples/cxx/serializer/library/library-simpl-tiein.cxx
@@ -1,5 +1,4 @@
// file : examples/cxx/serializer/library/library-simpl-tiein.cxx
-// author : Boris Kolpackov <boris@codesynthesis.com>
// copyright : not copyrighted - public domain
#include "library-simpl-tiein.hxx"
diff --git a/examples/cxx/serializer/library/library-simpl-tiein.hxx b/examples/cxx/serializer/library/library-simpl-tiein.hxx
index 15abe74..6b74fd0 100644
--- a/examples/cxx/serializer/library/library-simpl-tiein.hxx
+++ b/examples/cxx/serializer/library/library-simpl-tiein.hxx
@@ -1,5 +1,4 @@
// file : examples/cxx/serializer/library/library-simpl-tiein.hxx
-// author : Boris Kolpackov <boris@codesynthesis.com>
// copyright : not copyrighted - public domain
#ifndef LIBRARY_SIMPL_HXX
diff --git a/examples/cxx/serializer/library/library.hxx b/examples/cxx/serializer/library/library.hxx
index 9f8e250..ec1ddaf 100644
--- a/examples/cxx/serializer/library/library.hxx
+++ b/examples/cxx/serializer/library/library.hxx
@@ -1,5 +1,4 @@
// file : examples/cxx/serializer/library/library.hxx
-// author : Boris Kolpackov <boris@codesynthesis.com>
// copyright : not copyrighted - public domain
#ifndef LIBRARY_HXX
diff --git a/examples/cxx/serializer/library/library.map b/examples/cxx/serializer/library/library.map
index 901fb7d..ee238f4 100644
--- a/examples/cxx/serializer/library/library.map
+++ b/examples/cxx/serializer/library/library.map
@@ -1,5 +1,4 @@
# file : examples/cxx/serializer/library/library.map
-# author : Boris Kolpackov <boris@codesynthesis.com>
# copyright : not copyrighted - public domain
namespace http://www.codesynthesis.com/library
diff --git a/examples/cxx/serializer/library/makefile b/examples/cxx/serializer/library/makefile
index dce3ec9..584f5ac 100644
--- a/examples/cxx/serializer/library/makefile
+++ b/examples/cxx/serializer/library/makefile
@@ -1,5 +1,4 @@
# file : examples/cxx/serializer/library/makefile
-# author : Boris Kolpackov <boris@codesynthesis.com>
# copyright : Copyright (c) 2005-2011 Code Synthesis Tools CC
# license : GNU GPL v2 + exceptions; see accompanying LICENSE file
diff --git a/examples/cxx/serializer/makefile b/examples/cxx/serializer/makefile
index 3528a32..b9dd850 100644
--- a/examples/cxx/serializer/makefile
+++ b/examples/cxx/serializer/makefile
@@ -1,5 +1,4 @@
# file : examples/cxx/serializer/makefile
-# author : Boris Kolpackov <boris@codesynthesis.com>
# copyright : Copyright (c) 2006-2011 Code Synthesis Tools CC
# license : GNU GPL v2 + exceptions; see accompanying LICENSE file
diff --git a/examples/cxx/serializer/minimal/driver.cxx b/examples/cxx/serializer/minimal/driver.cxx
index 277b2e5..dd41150 100644
--- a/examples/cxx/serializer/minimal/driver.cxx
+++ b/examples/cxx/serializer/minimal/driver.cxx
@@ -1,5 +1,4 @@
// file : examples/cxx/serializer/minimal/driver.cxx
-// author : Boris Kolpackov <boris@codesynthesis.com>
// copyright : not copyrighted - public domain
#include <stdio.h>
diff --git a/examples/cxx/serializer/minimal/makefile b/examples/cxx/serializer/minimal/makefile
index fcc85a4..9acde7b 100644
--- a/examples/cxx/serializer/minimal/makefile
+++ b/examples/cxx/serializer/minimal/makefile
@@ -1,5 +1,4 @@
# file : examples/cxx/serializer/minimal/makefile
-# author : Boris Kolpackov <boris@codesynthesis.com>
# copyright : Copyright (c) 2005-2011 Code Synthesis Tools CC
# license : GNU GPL v2 + exceptions; see accompanying LICENSE file
diff --git a/examples/cxx/serializer/minimal/people-simpl-mixin.hxx b/examples/cxx/serializer/minimal/people-simpl-mixin.hxx
index 635bed2..3c6e5c1 100644
--- a/examples/cxx/serializer/minimal/people-simpl-mixin.hxx
+++ b/examples/cxx/serializer/minimal/people-simpl-mixin.hxx
@@ -1,5 +1,4 @@
// file : examples/cxx/serializer/people/people-simpl-mixin.hxx
-// author : Boris Kolpackov <boris@codesynthesis.com>
// copyright : not copyrighted - public domain
#ifndef PEOPLE_SIMPL_HXX
diff --git a/examples/cxx/serializer/minimal/people-simpl-tiein.hxx b/examples/cxx/serializer/minimal/people-simpl-tiein.hxx
index ce7a70d..479e54f 100644
--- a/examples/cxx/serializer/minimal/people-simpl-tiein.hxx
+++ b/examples/cxx/serializer/minimal/people-simpl-tiein.hxx
@@ -1,5 +1,4 @@
// file : examples/cxx/serializer/people/people-simpl-tiein.hxx
-// author : Boris Kolpackov <boris@codesynthesis.com>
// copyright : not copyrighted - public domain
#ifndef PEOPLE_SIMPL_HXX
diff --git a/examples/cxx/serializer/minimal/people.hxx b/examples/cxx/serializer/minimal/people.hxx
index 94ae37d..64dbbe8 100644
--- a/examples/cxx/serializer/minimal/people.hxx
+++ b/examples/cxx/serializer/minimal/people.hxx
@@ -1,5 +1,4 @@
// file : examples/cxx/serializer/minimal/people.hxx
-// author : Boris Kolpackov <boris@codesynthesis.com>
// copyright : not copyrighted - public domain
#ifndef PEOPLE_HXX
diff --git a/examples/cxx/serializer/minimal/people.map b/examples/cxx/serializer/minimal/people.map
index 6f51d5b..eab87fe 100644
--- a/examples/cxx/serializer/minimal/people.map
+++ b/examples/cxx/serializer/minimal/people.map
@@ -1,5 +1,4 @@
# file : examples/cxx/serializer/minimal/people.map
-# author : Boris Kolpackov <boris@codesynthesis.com>
# copyright : not copyrighted - public domain
include "people.hxx";
diff --git a/examples/cxx/serializer/polymorphism/driver.cxx b/examples/cxx/serializer/polymorphism/driver.cxx
index fc91b06..d90cb2f 100644
--- a/examples/cxx/serializer/polymorphism/driver.cxx
+++ b/examples/cxx/serializer/polymorphism/driver.cxx
@@ -1,5 +1,4 @@
// file : examples/cxx/serializer/polymorphism/driver.cxx
-// author : Boris Kolpackov <boris@codesynthesis.com>
// copyright : not copyrighted - public domain
#include <iostream>
diff --git a/examples/cxx/serializer/polymorphism/makefile b/examples/cxx/serializer/polymorphism/makefile
index ee4b458..661cdfd 100644
--- a/examples/cxx/serializer/polymorphism/makefile
+++ b/examples/cxx/serializer/polymorphism/makefile
@@ -1,5 +1,4 @@
# file : examples/cxx/serializer/polymorphism/makefile
-# author : Boris Kolpackov <boris@codesynthesis.com>
# copyright : Copyright (c) 2005-2011 Code Synthesis Tools CC
# license : GNU GPL v2 + exceptions; see accompanying LICENSE file
diff --git a/examples/cxx/serializer/polymorphism/supermen-simpl-mixin.cxx b/examples/cxx/serializer/polymorphism/supermen-simpl-mixin.cxx
index 328cc2f..e0c2f0f 100644
--- a/examples/cxx/serializer/polymorphism/supermen-simpl-mixin.cxx
+++ b/examples/cxx/serializer/polymorphism/supermen-simpl-mixin.cxx
@@ -1,5 +1,4 @@
// file : examples/cxx/serializer/polymorphism/supermen-simpl-mixin.cxx
-// author : Boris Kolpackov <boris@codesynthesis.com>
// copyright : not copyrighted - public domain
#include "supermen-simpl-mixin.hxx"
diff --git a/examples/cxx/serializer/polymorphism/supermen-simpl-mixin.hxx b/examples/cxx/serializer/polymorphism/supermen-simpl-mixin.hxx
index 04b8b18..32e6b62 100644
--- a/examples/cxx/serializer/polymorphism/supermen-simpl-mixin.hxx
+++ b/examples/cxx/serializer/polymorphism/supermen-simpl-mixin.hxx
@@ -1,5 +1,4 @@
// file : examples/cxx/serializer/polymorphism/library-simpl-mixin.hxx
-// author : Boris Kolpackov <boris@codesynthesis.com>
// copyright : not copyrighted - public domain
#ifndef SUPERMEN_SIMPL_HXX
diff --git a/examples/cxx/serializer/polymorphism/supermen-simpl-tiein.cxx b/examples/cxx/serializer/polymorphism/supermen-simpl-tiein.cxx
index 77466b3..ed688e9 100644
--- a/examples/cxx/serializer/polymorphism/supermen-simpl-tiein.cxx
+++ b/examples/cxx/serializer/polymorphism/supermen-simpl-tiein.cxx
@@ -1,5 +1,4 @@
// file : examples/cxx/serializer/polymorphism/supermen-simpl-tiein.cxx
-// author : Boris Kolpackov <boris@codesynthesis.com>
// copyright : not copyrighted - public domain
#include "supermen-simpl-tiein.hxx"
diff --git a/examples/cxx/serializer/polymorphism/supermen-simpl-tiein.hxx b/examples/cxx/serializer/polymorphism/supermen-simpl-tiein.hxx
index 806d017..ee41c41 100644
--- a/examples/cxx/serializer/polymorphism/supermen-simpl-tiein.hxx
+++ b/examples/cxx/serializer/polymorphism/supermen-simpl-tiein.hxx
@@ -1,5 +1,4 @@
// file : examples/cxx/serializer/polymorphism/supermen-simpl-tiein.hxx
-// author : Boris Kolpackov <boris@codesynthesis.com>
// copyright : not copyrighted - public domain
#ifndef SUPERMEN_SIMPL_HXX
diff --git a/examples/cxx/serializer/polymorphism/supermen.hxx b/examples/cxx/serializer/polymorphism/supermen.hxx
index a04b8dd..e4e448f 100644
--- a/examples/cxx/serializer/polymorphism/supermen.hxx
+++ b/examples/cxx/serializer/polymorphism/supermen.hxx
@@ -1,5 +1,4 @@
// file : examples/cxx/serializer/polymorphism/supermen.hxx
-// author : Boris Kolpackov <boris@codesynthesis.com>
// copyright : not copyrighted - public domain
#ifndef SUPERMEN_HXX
diff --git a/examples/cxx/serializer/polymorphism/supermen.map b/examples/cxx/serializer/polymorphism/supermen.map
index ef39a19..784c3c7 100644
--- a/examples/cxx/serializer/polymorphism/supermen.map
+++ b/examples/cxx/serializer/polymorphism/supermen.map
@@ -1,5 +1,4 @@
# file : examples/cxx/serializer/polymorphism/supermen.map
-# author : Boris Kolpackov <boris@codesynthesis.com>
# copyright : not copyrighted - public domain
include "supermen.hxx";
diff --git a/examples/cxx/serializer/polyroot/driver.cxx b/examples/cxx/serializer/polyroot/driver.cxx
index 7558618..187ac07 100644
--- a/examples/cxx/serializer/polyroot/driver.cxx
+++ b/examples/cxx/serializer/polyroot/driver.cxx
@@ -1,5 +1,4 @@
// file : examples/cxx/serializer/polyroot/driver.cxx
-// author : Boris Kolpackov <boris@codesynthesis.com>
// copyright : not copyrighted - public domain
#include <iostream>
diff --git a/examples/cxx/serializer/polyroot/makefile b/examples/cxx/serializer/polyroot/makefile
index cf5e09a..336e362 100644
--- a/examples/cxx/serializer/polyroot/makefile
+++ b/examples/cxx/serializer/polyroot/makefile
@@ -1,5 +1,4 @@
# file : examples/cxx/serializer/polyroot/makefile
-# author : Boris Kolpackov <boris@codesynthesis.com>
# copyright : Copyright (c) 2005-2011 Code Synthesis Tools CC
# license : GNU GPL v2 + exceptions; see accompanying LICENSE file
diff --git a/examples/cxx/serializer/polyroot/supermen-simpl-mixin.cxx b/examples/cxx/serializer/polyroot/supermen-simpl-mixin.cxx
index b6ea058..68ac06d 100644
--- a/examples/cxx/serializer/polyroot/supermen-simpl-mixin.cxx
+++ b/examples/cxx/serializer/polyroot/supermen-simpl-mixin.cxx
@@ -1,5 +1,4 @@
// file : examples/cxx/serializer/polyroot/supermen-simpl-mixin.cxx
-// author : Boris Kolpackov <boris@codesynthesis.com>
// copyright : not copyrighted - public domain
#include "supermen-simpl-mixin.hxx"
diff --git a/examples/cxx/serializer/polyroot/supermen-simpl-mixin.hxx b/examples/cxx/serializer/polyroot/supermen-simpl-mixin.hxx
index 9f9f37c..1baba52 100644
--- a/examples/cxx/serializer/polyroot/supermen-simpl-mixin.hxx
+++ b/examples/cxx/serializer/polyroot/supermen-simpl-mixin.hxx
@@ -1,5 +1,4 @@
// file : examples/cxx/serializer/polyroot/library-simpl-mixin.hxx
-// author : Boris Kolpackov <boris@codesynthesis.com>
// copyright : not copyrighted - public domain
#ifndef SUPERMEN_SIMPL_HXX
diff --git a/examples/cxx/serializer/polyroot/supermen-simpl-tiein.cxx b/examples/cxx/serializer/polyroot/supermen-simpl-tiein.cxx
index f72e0f4..6d38fde 100644
--- a/examples/cxx/serializer/polyroot/supermen-simpl-tiein.cxx
+++ b/examples/cxx/serializer/polyroot/supermen-simpl-tiein.cxx
@@ -1,5 +1,4 @@
// file : examples/cxx/serializer/polyroot/supermen-simpl-tiein.cxx
-// author : Boris Kolpackov <boris@codesynthesis.com>
// copyright : not copyrighted - public domain
#include "supermen-simpl-tiein.hxx"
diff --git a/examples/cxx/serializer/polyroot/supermen-simpl-tiein.hxx b/examples/cxx/serializer/polyroot/supermen-simpl-tiein.hxx
index e67e7f4..9d5ade5 100644
--- a/examples/cxx/serializer/polyroot/supermen-simpl-tiein.hxx
+++ b/examples/cxx/serializer/polyroot/supermen-simpl-tiein.hxx
@@ -1,5 +1,4 @@
// file : examples/cxx/serializer/polyroot/supermen-simpl-tiein.hxx
-// author : Boris Kolpackov <boris@codesynthesis.com>
// copyright : not copyrighted - public domain
#ifndef SUPERMEN_SIMPL_HXX
diff --git a/examples/cxx/serializer/polyroot/supermen.hxx b/examples/cxx/serializer/polyroot/supermen.hxx
index 7987a0d..dd0ebc6 100644
--- a/examples/cxx/serializer/polyroot/supermen.hxx
+++ b/examples/cxx/serializer/polyroot/supermen.hxx
@@ -1,5 +1,4 @@
// file : examples/cxx/serializer/polyroot/supermen.hxx
-// author : Boris Kolpackov <boris@codesynthesis.com>
// copyright : not copyrighted - public domain
#ifndef SUPERMEN_HXX
diff --git a/examples/cxx/serializer/polyroot/supermen.map b/examples/cxx/serializer/polyroot/supermen.map
index 53b1097..d51e304 100644
--- a/examples/cxx/serializer/polyroot/supermen.map
+++ b/examples/cxx/serializer/polyroot/supermen.map
@@ -1,5 +1,4 @@
# file : examples/cxx/serializer/polyroot/supermen.map
-# author : Boris Kolpackov <boris@codesynthesis.com>
# copyright : not copyrighted - public domain
include "supermen.hxx";
diff --git a/examples/cxx/serializer/wildcard/driver.cxx b/examples/cxx/serializer/wildcard/driver.cxx
index 876f47b..c9be5f7 100644
--- a/examples/cxx/serializer/wildcard/driver.cxx
+++ b/examples/cxx/serializer/wildcard/driver.cxx
@@ -1,5 +1,4 @@
// file : examples/cxx/serializer/wildcard/driver.cxx
-// author : Boris Kolpackov <boris@codesynthesis.com>
// copyright : not copyrighted - public domain
#include <iostream>
diff --git a/examples/cxx/serializer/wildcard/email.hxx b/examples/cxx/serializer/wildcard/email.hxx
index 6cf76da..6fd873d 100644
--- a/examples/cxx/serializer/wildcard/email.hxx
+++ b/examples/cxx/serializer/wildcard/email.hxx
@@ -1,5 +1,4 @@
// file : examples/cxx/serializer/wildcard/email.hxx
-// author : Boris Kolpackov <boris@codesynthesis.com>
// copyright : not copyrighted - public domain
#ifndef EMAIL_HXX
diff --git a/examples/cxx/serializer/wildcard/email.map b/examples/cxx/serializer/wildcard/email.map
index fadafb2..baa3c0e 100644
--- a/examples/cxx/serializer/wildcard/email.map
+++ b/examples/cxx/serializer/wildcard/email.map
@@ -1,5 +1,4 @@
# file : examples/cxx/serializer/wildcard/email.map
-# author : Boris Kolpackov <boris@codesynthesis.com>
# copyright : not copyrighted - public domain
namespace http://www.codesynthesis.com/email
diff --git a/examples/cxx/serializer/wildcard/makefile b/examples/cxx/serializer/wildcard/makefile
index 969d8ba..cb7614a 100644
--- a/examples/cxx/serializer/wildcard/makefile
+++ b/examples/cxx/serializer/wildcard/makefile
@@ -1,5 +1,4 @@
# file : examples/cxx/serializer/wildcard/makefile
-# author : Boris Kolpackov <boris@codesynthesis.com>
# copyright : Copyright (c) 2005-2011 Code Synthesis Tools CC
# license : GNU GPL v2 + exceptions; see accompanying LICENSE file