diff options
author | Mike Buland <eichlan@xagasoft.com> | 2012-04-15 16:37:21 +0000 |
---|---|---|
committer | Mike Buland <eichlan@xagasoft.com> | 2012-04-15 16:37:21 +0000 |
commit | df07e63244b763594fee882b2b3dfcc31fd44209 (patch) | |
tree | bb8979580bc9dc8e56ed3cc9d5c332987654117f | |
parent | da1de5cdb5c42ce811a66d377789e585042b98c7 (diff) | |
download | libbu++-df07e63244b763594fee882b2b3dfcc31fd44209.tar.gz libbu++-df07e63244b763594fee882b2b3dfcc31fd44209.tar.bz2 libbu++-df07e63244b763594fee882b2b3dfcc31fd44209.tar.xz libbu++-df07e63244b763594fee882b2b3dfcc31fd44209.zip |
Updated copyright, packaging, makefile, etc.
253 files changed, 400 insertions, 260 deletions
@@ -1,4 +1,4 @@ | |||
1 | Copyright (C) 2007-2011 Xagasoft | 1 | Copyright (C) 2007-2012 Xagasoft |
2 | 2 | ||
3 | All rights reserved. | 3 | All rights reserved. |
4 | 4 | ||
@@ -1,12 +1,12 @@ | |||
1 | # | 1 | # |
2 | # Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | # Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | # | 3 | # |
4 | # This file is part of the libbu++ library and is released under the | 4 | # This file is part of the libbu++ library and is released under the |
5 | # terms of the license contained in the file LICENSE. | 5 | # terms of the license contained in the file LICENSE. |
6 | # | 6 | # |
7 | 7 | ||
8 | OBJECTS := $(patsubst %.cpp,%.o,$(wildcard src/stable/*.cpp src/unstable/*.cpp src/experimental/*.cpp)) | 8 | OBJECTS := $(patsubst %.cpp,%.o,$(wildcard src/stable/*.cpp src/unstable/*.cpp src/experimental/*.cpp)) |
9 | HEADERS := bu/signals.h bu/autoconfig.h bu/version.h bu/config.h $(foreach fn,$(wildcard src/stable/*.h src/unstable/*.h src/experimental/*.h),bu/$(notdir ${fn})) $(patsubst src/%,bu/%,$(wildcard src/compat/*.h)) | 9 | HEADERS := bu bu/signals.h bu/autoconfig.h bu/version.h bu/config.h $(foreach fn,$(wildcard src/stable/*.h src/unstable/*.h src/experimental/*.h),bu/$(notdir ${fn})) $(patsubst src/%,bu/%,$(wildcard src/compat/*.h)) |
10 | TOOLS := $(patsubst src/tools/%.cpp,%,$(wildcard src/tools/*.cpp)) | 10 | TOOLS := $(patsubst src/tools/%.cpp,%,$(wildcard src/tools/*.cpp)) |
11 | UNITS := $(patsubst src/unit/%.unit,unit/%,$(wildcard src/unit/*.unit)) | 11 | UNITS := $(patsubst src/unit/%.unit,unit/%,$(wildcard src/unit/*.unit)) |
12 | TESTS := $(patsubst src/tests/%.cpp,tests/%,$(wildcard src/tests/*.cpp)) | 12 | TESTS := $(patsubst src/tests/%.cpp,tests/%,$(wildcard src/tests/*.cpp)) |
@@ -22,6 +22,9 @@ tests: ${UNITS} ${TESTS} | |||
22 | clean: | 22 | clean: |
23 | -rm ${HEADERS} ${OBJECTS} libbu++.a ${TOOLS} ${UNITS} ${TESTS} | 23 | -rm ${HEADERS} ${OBJECTS} libbu++.a ${TOOLS} ${UNITS} ${TESTS} |
24 | 24 | ||
25 | bu: | ||
26 | mkdir -p bu/compat | ||
27 | |||
25 | bu/signals.h bu/config.h bu/autoconfig.h bu/version.h: bu/%: src/% | 28 | bu/signals.h bu/config.h bu/autoconfig.h bu/version.h: bu/%: src/% |
26 | ln -s ../$< $@ | 29 | ln -s ../$< $@ |
27 | 30 | ||
@@ -61,6 +64,9 @@ viewcsv: | |||
61 | bin2cpp: | 64 | bin2cpp: |
62 | g++ -ggdb -W -Wall -I. -L. $< -o $@ -lbu++ -lbz2 -lz -llzma | 65 | g++ -ggdb -W -Wall -I. -L. $< -o $@ -lbu++ -lbz2 -lz -llzma |
63 | 66 | ||
67 | myriad: | ||
68 | g++ -ggdb -W -Wall -I. -L. $< -o $@ -lbu++ -lpthread | ||
69 | |||
64 | ${OBJECTS}: %.o: %.cpp | 70 | ${OBJECTS}: %.o: %.cpp |
65 | g++ -ggdb -W -Wall -I. $< -c -o $@ | 71 | g++ -ggdb -W -Wall -I. $< -c -o $@ |
66 | 72 | ||
diff --git a/Makefile.legacy b/Makefile.legacy index 15f8dfa..af297e1 100644 --- a/Makefile.legacy +++ b/Makefile.legacy | |||
@@ -1,5 +1,5 @@ | |||
1 | # | 1 | # |
2 | # Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | # Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | # | 3 | # |
4 | # This file is part of the libbu++ library and is released under the | 4 | # This file is part of the libbu++ library and is released under the |
5 | # terms of the license contained in the file LICENSE. | 5 | # terms of the license contained in the file LICENSE. |
diff --git a/autoconfig.cpp b/autoconfig.cpp index acd052e..c2649ad 100644 --- a/autoconfig.cpp +++ b/autoconfig.cpp | |||
@@ -64,17 +64,26 @@ int main( int argc, char *argv[] ) | |||
64 | } | 64 | } |
65 | else if( strcmp( argv[1], "src/version.h" ) == 0 ) | 65 | else if( strcmp( argv[1], "src/version.h" ) == 0 ) |
66 | { | 66 | { |
67 | FILE *fVer = fopen("version", "rt"); | ||
68 | char buf[1024]; | ||
69 | buf[fread( buf, 1, 1024, fVer )] = '\0'; | ||
70 | for( int j = 0; buf[j]; j++ ) | ||
71 | if( buf[j] == '\n' ) | ||
72 | buf[j] = '\0'; | ||
73 | fclose( fVer ); | ||
74 | |||
67 | fOut = fopen( argv[1], "w" ); | 75 | fOut = fopen( argv[1], "w" ); |
68 | fprintf( fOut, | 76 | fprintf( fOut, |
69 | "#ifndef BU_VERSION_H\n" | 77 | "#ifndef BU_VERSION_H\n" |
70 | "#define BU_VERSION_H\n\n" | 78 | "#define BU_VERSION_H\n\n" |
71 | "#define LIBBU_VERSION 0\n" | 79 | "#define LIBBU_VERSION 0\n" |
72 | "#define LIBBU_REVISION 1\n" | 80 | "#define LIBBU_REVISION 1\n" |
73 | "#define LIBBU_VERSION_STR \"0.1\"\n" | 81 | "#define LIBBU_VERSION_STR \"%s\"\n" |
74 | "#define LIBBU_API 0\n" | 82 | "#define LIBBU_API 0\n" |
75 | "#define LIBBU_VC_ID \""); | 83 | "#define LIBBU_VC_ID \"", |
84 | buf | ||
85 | ); | ||
76 | FILE *psub = popen("svnversion -n", "r"); | 86 | FILE *psub = popen("svnversion -n", "r"); |
77 | char buf[1024]; | ||
78 | fwrite( buf, fread( buf, 1, 1024, psub ), 1, fOut ); | 87 | fwrite( buf, fread( buf, 1, 1024, psub ), 1, fOut ); |
79 | pclose( psub ); | 88 | pclose( psub ); |
80 | fprintf( fOut, "\"\n\n#endif\n"); | 89 | fprintf( fOut, "\"\n\n#endif\n"); |
diff --git a/default.bld b/default.bld index c7a597e..3e7b692 100644 --- a/default.bld +++ b/default.bld | |||
@@ -1,5 +1,5 @@ | |||
1 | /* test | 1 | /* test |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
@@ -236,18 +236,28 @@ target files("src/unit/*.unit").replace("src/","").replace(".unit","") | |||
236 | LDFLAGS += "-L. -lbu++"; | 236 | LDFLAGS += "-L. -lbu++"; |
237 | } | 237 | } |
238 | 238 | ||
239 | target "libbu++-r$(svnversion "-n").tar.bz2" | 239 | PKG_BASE = "libbu++-$(cat version)-r$(svnversion "-n").tar"; |
240 | |||
241 | target PKG_BASE | ||
240 | { | 242 | { |
241 | input [ | 243 | input [ |
242 | "LICENSE", | 244 | "LICENSE", |
243 | "Doxyfile", | 245 | "Doxyfile", |
246 | "Makefile", | ||
244 | files("*.bld"), | 247 | files("*.bld"), |
245 | "support/vim/syntax/taf.vim", | 248 | "support/vim/syntax/taf.vim", |
246 | "support/vim/ftdetect/taf.vim", | 249 | "support/vim/ftdetect/taf.vim", |
247 | "support/vim/ftplugin/taf.vim", | 250 | "support/vim/ftplugin/taf.vim", |
248 | files("*.sh"), | 251 | files("*.sh"), |
252 | files("autoconfig.cpp"), | ||
249 | files("src/*.cpp"), | 253 | files("src/*.cpp"), |
250 | files("src/*.h"), | 254 | files("src/*.h"), |
255 | files("src/stable/*.cpp"), | ||
256 | files("src/stable/*.h"), | ||
257 | files("src/unstable/*.cpp"), | ||
258 | files("src/unstable/*.h"), | ||
259 | files("src/experimental/*.cpp"), | ||
260 | files("src/experimental/*.h"), | ||
251 | files("src/tests/*.cpp"), | 261 | files("src/tests/*.cpp"), |
252 | files("src/tests*.h"), | 262 | files("src/tests*.h"), |
253 | files("src/tools/*.cpp"), | 263 | files("src/tools/*.cpp"), |
@@ -255,21 +265,57 @@ target "libbu++-r$(svnversion "-n").tar.bz2" | |||
255 | files("src/unit/*.unit"), | 265 | files("src/unit/*.unit"), |
256 | files("src/doxy/*.dox"), | 266 | files("src/doxy/*.dox"), |
257 | files("src/compat/*.cpp"), | 267 | files("src/compat/*.cpp"), |
258 | files("src/compat/*.h") | 268 | files("src/compat/*.h"), |
269 | files("src/extra/*.cpp"), | ||
270 | files("src/extra/*.h"), | ||
271 | files("pregen/*"), | ||
272 | "api" | ||
259 | ]; | 273 | ]; |
260 | rule "tarball"; | 274 | rule "tarball"; |
261 | tag "pkg"; | 275 | tag "pkg"; |
262 | } | 276 | } |
263 | 277 | ||
278 | target PKG_BASE + ".gz" | ||
279 | { | ||
280 | input PKG_BASE; | ||
281 | tag "pkg"; | ||
282 | display "gzip"; | ||
283 | profile "build" | ||
284 | { | ||
285 | execute("gzip -9 < ${INPUT} > ${OUTPUT}"); | ||
286 | } | ||
287 | } | ||
288 | |||
289 | target PKG_BASE + ".bz2" | ||
290 | { | ||
291 | input PKG_BASE; | ||
292 | tag "pkg"; | ||
293 | display "bzip2"; | ||
294 | profile "build" | ||
295 | { | ||
296 | execute("bzip2 -9 < ${INPUT} > ${OUTPUT}"); | ||
297 | } | ||
298 | } | ||
299 | |||
300 | target PKG_BASE + ".xz" | ||
301 | { | ||
302 | input PKG_BASE; | ||
303 | tag "pkg"; | ||
304 | display "xz"; | ||
305 | profile "build" | ||
306 | { | ||
307 | execute("xz -9 < ${INPUT} > ${OUTPUT}"); | ||
308 | } | ||
309 | } | ||
310 | |||
264 | rule "tarball" | 311 | rule "tarball" |
265 | { | 312 | { |
266 | input matches("LICENSE", "*.cpp", "*.h", "*.conf", "*.bld", "Doxyfile", | 313 | input matches("LICENSE", "Makefile", "*.cpp", "*.h", "*.conf", "*.bld", |
267 | "*.vim", "*.sh", "*.unit"); | 314 | "Doxyfile", "*.vim", "*.sh", "*.unit", "api"); |
268 | profile "build" | 315 | profile "build" |
269 | { | 316 | { |
270 | OUTDIR = OUTPUT.replace(".tar.bz2",""); | 317 | OUTDIR = OUTPUT.replace(".tar.bz2",""); |
271 | execute("tar --transform=\"s@^@${OUTDIR}/@\" -c ${INPUT} |" | 318 | execute("tar -f ./${OUTPUT} --transform=\"s@^@${OUTDIR}/@\" -c ${INPUT}"); |
272 | " bzip2 -9 > ${OUTPUT}"); | ||
273 | } | 319 | } |
274 | } | 320 | } |
275 | 321 | ||
diff --git a/gensigs.bld b/gensigs.bld index d485a6e..344eb62 100644 --- a/gensigs.bld +++ b/gensigs.bld | |||
@@ -7,7 +7,7 @@ function genSigs( outName ) | |||
7 | fOut = open(outName, "w"); | 7 | fOut = open(outName, "w"); |
8 | fOut.write( | 8 | fOut.write( |
9 | "/*\n" | 9 | "/*\n" |
10 | " * Copyright (C) 2007-2011 Xagasoft, All rights reserved.\n" | 10 | " * Copyright (C) 2007-2012 Xagasoft, All rights reserved.\n" |
11 | " *\n" | 11 | " *\n" |
12 | " * This file is part of the libbu++ library and is released under the\n" | 12 | " * This file is part of the libbu++ library and is released under the\n" |
13 | " * terms of the license contained in the file LICENSE.\n" | 13 | " * terms of the license contained in the file LICENSE.\n" |
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/pregen/signals.h b/pregen/signals.h index 47ddad4..6020e59 100644 --- a/pregen/signals.h +++ b/pregen/signals.h | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/compat/linux.h b/src/compat/linux.h index 7eaed8e..f1b0861 100644 --- a/src/compat/linux.h +++ b/src/compat/linux.h | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/compat/osx.h b/src/compat/osx.h index 19628a3..5d86ce5 100644 --- a/src/compat/osx.h +++ b/src/compat/osx.h | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/compat/win32.cpp b/src/compat/win32.cpp index b689322..6488d5f 100644 --- a/src/compat/win32.cpp +++ b/src/compat/win32.cpp | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/compat/win32.h b/src/compat/win32.h index 2978371..2a8aa60 100644 --- a/src/compat/win32.h +++ b/src/compat/win32.h | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/config.h b/src/config.h index 72f5870..8a79166 100644 --- a/src/config.h +++ b/src/config.h | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/doxy/archives.dox b/src/doxy/archives.dox index 7155227..13e1937 100644 --- a/src/doxy/archives.dox +++ b/src/doxy/archives.dox | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/doxy/formatting.dox b/src/doxy/formatting.dox index 7acb9de..9ac618d 100644 --- a/src/doxy/formatting.dox +++ b/src/doxy/formatting.dox | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/doxy/groups.dox b/src/doxy/groups.dox index 6b7cd57..e8338f9 100644 --- a/src/doxy/groups.dox +++ b/src/doxy/groups.dox | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/doxy/main.dox b/src/doxy/main.dox index 2964ee5..3a45019 100644 --- a/src/doxy/main.dox +++ b/src/doxy/main.dox | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/doxy/params.dox b/src/doxy/params.dox index 78c3e63..4214075 100644 --- a/src/doxy/params.dox +++ b/src/doxy/params.dox | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/doxy/plugins.dox b/src/doxy/plugins.dox index d913430..672f7bd 100644 --- a/src/doxy/plugins.dox +++ b/src/doxy/plugins.dox | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/doxy/servers.dox b/src/doxy/servers.dox index c344b8a..b3e568f 100644 --- a/src/doxy/servers.dox +++ b/src/doxy/servers.dox | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/doxy/streams.dox b/src/doxy/streams.dox index c039804..56292e9 100644 --- a/src/doxy/streams.dox +++ b/src/doxy/streams.dox | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/doxy/taf.dox b/src/doxy/taf.dox index 15692f4..24dacee 100644 --- a/src/doxy/taf.dox +++ b/src/doxy/taf.dox | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/doxy/threading.dox b/src/doxy/threading.dox index 9a04ecb..db50e8b 100644 --- a/src/doxy/threading.dox +++ b/src/doxy/threading.dox | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/doxy/unittest.dox b/src/doxy/unittest.dox index 5304551..f40f4cb 100644 --- a/src/doxy/unittest.dox +++ b/src/doxy/unittest.dox | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/experimental/cache.cpp b/src/experimental/cache.cpp index 52bd9fc..d7ba31f 100644 --- a/src/experimental/cache.cpp +++ b/src/experimental/cache.cpp | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/experimental/cache.h b/src/experimental/cache.h index 455cf1b..e3c8483 100644 --- a/src/experimental/cache.h +++ b/src/experimental/cache.h | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/experimental/cachecalc.cpp b/src/experimental/cachecalc.cpp index 7b8a10a..ec4fa58 100644 --- a/src/experimental/cachecalc.cpp +++ b/src/experimental/cachecalc.cpp | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/experimental/cachecalc.h b/src/experimental/cachecalc.h index 89cfadc..ecfa3f4 100644 --- a/src/experimental/cachecalc.h +++ b/src/experimental/cachecalc.h | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/experimental/cachestore.cpp b/src/experimental/cachestore.cpp index af49548..84c391b 100644 --- a/src/experimental/cachestore.cpp +++ b/src/experimental/cachestore.cpp | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/experimental/cachestore.h b/src/experimental/cachestore.h index d0d91a2..a332e49 100644 --- a/src/experimental/cachestore.h +++ b/src/experimental/cachestore.h | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/experimental/cachestorefiles.cpp b/src/experimental/cachestorefiles.cpp index 66ce672..398461a 100644 --- a/src/experimental/cachestorefiles.cpp +++ b/src/experimental/cachestorefiles.cpp | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/experimental/cachestorefiles.h b/src/experimental/cachestorefiles.h index 5f94f4c..d3a6894 100644 --- a/src/experimental/cachestorefiles.h +++ b/src/experimental/cachestorefiles.h | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/experimental/cachestoremyriad.cpp b/src/experimental/cachestoremyriad.cpp index 9d00dce..b44b761 100644 --- a/src/experimental/cachestoremyriad.cpp +++ b/src/experimental/cachestoremyriad.cpp | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/experimental/cachestoremyriad.h b/src/experimental/cachestoremyriad.h index e632a82..1953b61 100644 --- a/src/experimental/cachestoremyriad.h +++ b/src/experimental/cachestoremyriad.h | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/experimental/fastcgi.cpp b/src/experimental/fastcgi.cpp index 2f9161e..1f945a3 100644 --- a/src/experimental/fastcgi.cpp +++ b/src/experimental/fastcgi.cpp | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/experimental/fastcgi.h b/src/experimental/fastcgi.h index d290c40..63d975f 100644 --- a/src/experimental/fastcgi.h +++ b/src/experimental/fastcgi.h | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/experimental/httpget.cpp b/src/experimental/httpget.cpp index 99492a2..7a8a89a 100644 --- a/src/experimental/httpget.cpp +++ b/src/experimental/httpget.cpp | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/experimental/httpget.h b/src/experimental/httpget.h index a58e8ac..e8092e5 100644 --- a/src/experimental/httpget.h +++ b/src/experimental/httpget.h | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/experimental/lexer.cpp b/src/experimental/lexer.cpp index 185456a..48ee017 100644 --- a/src/experimental/lexer.cpp +++ b/src/experimental/lexer.cpp | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/experimental/lexer.h b/src/experimental/lexer.h index b057692..69f4106 100644 --- a/src/experimental/lexer.h +++ b/src/experimental/lexer.h | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/experimental/parser.cpp b/src/experimental/parser.cpp index 4d9f793..9f10256 100644 --- a/src/experimental/parser.cpp +++ b/src/experimental/parser.cpp | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/experimental/parser.h b/src/experimental/parser.h index a168c7b..953202d 100644 --- a/src/experimental/parser.h +++ b/src/experimental/parser.h | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/experimental/regex.cpp b/src/experimental/regex.cpp index af0d364..de24935 100644 --- a/src/experimental/regex.cpp +++ b/src/experimental/regex.cpp | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/experimental/regex.h b/src/experimental/regex.h index f0aa5d5..c83ebe8 100644 --- a/src/experimental/regex.h +++ b/src/experimental/regex.h | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/experimental/xmlreader.cpp b/src/experimental/xmlreader.cpp index ba7fb3d..f11ac04 100644 --- a/src/experimental/xmlreader.cpp +++ b/src/experimental/xmlreader.cpp | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/experimental/xmlreader.h b/src/experimental/xmlreader.h index 7cb44c9..d4bad1e 100644 --- a/src/experimental/xmlreader.h +++ b/src/experimental/xmlreader.h | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/extra/myriadfs.cpp b/src/extra/myriadfs.cpp index 8e48ec0..867a595 100644 --- a/src/extra/myriadfs.cpp +++ b/src/extra/myriadfs.cpp | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/stable/archival.cpp b/src/stable/archival.cpp index 687e8a3..5e6e612 100644 --- a/src/stable/archival.cpp +++ b/src/stable/archival.cpp | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/stable/archival.h b/src/stable/archival.h index 946167a..664bc98 100644 --- a/src/stable/archival.h +++ b/src/stable/archival.h | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/stable/archive.cpp b/src/stable/archive.cpp index d300a87..3a88b55 100644 --- a/src/stable/archive.cpp +++ b/src/stable/archive.cpp | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/stable/archive.h b/src/stable/archive.h index 61474a4..9716bb1 100644 --- a/src/stable/archive.h +++ b/src/stable/archive.h | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/stable/archivebase.cpp b/src/stable/archivebase.cpp index d00b1a5..dcf08f4 100644 --- a/src/stable/archivebase.cpp +++ b/src/stable/archivebase.cpp | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/stable/archivebase.h b/src/stable/archivebase.h index 4745d91..34ec1af 100644 --- a/src/stable/archivebase.h +++ b/src/stable/archivebase.h | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/stable/array.cpp b/src/stable/array.cpp index b776fed..eb8bac5 100644 --- a/src/stable/array.cpp +++ b/src/stable/array.cpp | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/stable/array.h b/src/stable/array.h index fcd800e..364a5b3 100644 --- a/src/stable/array.h +++ b/src/stable/array.h | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/stable/atom.cpp b/src/stable/atom.cpp index 3c77b90..5b97d5b 100644 --- a/src/stable/atom.cpp +++ b/src/stable/atom.cpp | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/stable/atom.h b/src/stable/atom.h index fd88f2d..105c29a 100644 --- a/src/stable/atom.h +++ b/src/stable/atom.h | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/stable/base64.cpp b/src/stable/base64.cpp index 4d659f0..5ace999 100644 --- a/src/stable/base64.cpp +++ b/src/stable/base64.cpp | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/stable/base64.h b/src/stable/base64.h index c081ac1..b10aaeb 100644 --- a/src/stable/base64.h +++ b/src/stable/base64.h | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/stable/buffer.cpp b/src/stable/buffer.cpp index 47fab70..26025ba 100644 --- a/src/stable/buffer.cpp +++ b/src/stable/buffer.cpp | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/stable/buffer.h b/src/stable/buffer.h index 91ec9c2..a8303fa 100644 --- a/src/stable/buffer.h +++ b/src/stable/buffer.h | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/stable/bzip2.cpp b/src/stable/bzip2.cpp index ca007b0..ce83e8a 100644 --- a/src/stable/bzip2.cpp +++ b/src/stable/bzip2.cpp | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/stable/bzip2.h b/src/stable/bzip2.h index 9a8d172..d92dd2f 100644 --- a/src/stable/bzip2.h +++ b/src/stable/bzip2.h | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/stable/client.cpp b/src/stable/client.cpp index 75f6158..7ae10f7 100644 --- a/src/stable/client.cpp +++ b/src/stable/client.cpp | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/stable/client.h b/src/stable/client.h index 119c2c1..6bd41af 100644 --- a/src/stable/client.h +++ b/src/stable/client.h | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/stable/clientlink.cpp b/src/stable/clientlink.cpp index ce8b2cb..3054753 100644 --- a/src/stable/clientlink.cpp +++ b/src/stable/clientlink.cpp | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/stable/clientlink.h b/src/stable/clientlink.h index e4618e7..b5cd74d 100644 --- a/src/stable/clientlink.h +++ b/src/stable/clientlink.h | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/stable/clientlinkfactory.cpp b/src/stable/clientlinkfactory.cpp index f48e11e..c855d10 100644 --- a/src/stable/clientlinkfactory.cpp +++ b/src/stable/clientlinkfactory.cpp | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/stable/clientlinkfactory.h b/src/stable/clientlinkfactory.h index 21d3363..b1b7670 100644 --- a/src/stable/clientlinkfactory.h +++ b/src/stable/clientlinkfactory.h | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/stable/condition.cpp b/src/stable/condition.cpp index 2f55ce2..79af262 100644 --- a/src/stable/condition.cpp +++ b/src/stable/condition.cpp | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/stable/condition.h b/src/stable/condition.h index 71634f5..2c27720 100644 --- a/src/stable/condition.h +++ b/src/stable/condition.h | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/stable/conduit.cpp b/src/stable/conduit.cpp index c9ccdc4..8f5eba5 100644 --- a/src/stable/conduit.cpp +++ b/src/stable/conduit.cpp | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/stable/conduit.h b/src/stable/conduit.h index 9babaaf..a1959a9 100644 --- a/src/stable/conduit.h +++ b/src/stable/conduit.h | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/stable/crypt.cpp b/src/stable/crypt.cpp index eb87479..3f7fc83 100644 --- a/src/stable/crypt.cpp +++ b/src/stable/crypt.cpp | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/stable/crypt.h b/src/stable/crypt.h index a94402a..14adc3a 100644 --- a/src/stable/crypt.h +++ b/src/stable/crypt.h | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/stable/cryptohash.cpp b/src/stable/cryptohash.cpp index ddd293c..dda734c 100644 --- a/src/stable/cryptohash.cpp +++ b/src/stable/cryptohash.cpp | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/stable/cryptohash.h b/src/stable/cryptohash.h index bc5435f..3f13b05 100644 --- a/src/stable/cryptohash.h +++ b/src/stable/cryptohash.h | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/stable/csvreader.cpp b/src/stable/csvreader.cpp index 4da7883..ddc68f0 100644 --- a/src/stable/csvreader.cpp +++ b/src/stable/csvreader.cpp | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/stable/csvreader.h b/src/stable/csvreader.h index 2e9e7b0..6825da3 100644 --- a/src/stable/csvreader.h +++ b/src/stable/csvreader.h | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/stable/csvwriter.cpp b/src/stable/csvwriter.cpp index d8910aa..a89b309 100644 --- a/src/stable/csvwriter.cpp +++ b/src/stable/csvwriter.cpp | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/stable/csvwriter.h b/src/stable/csvwriter.h index 4291ed5..bae1e1d 100644 --- a/src/stable/csvwriter.h +++ b/src/stable/csvwriter.h | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/stable/deflate.cpp b/src/stable/deflate.cpp index 704d172..b7e1804 100644 --- a/src/stable/deflate.cpp +++ b/src/stable/deflate.cpp | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/stable/deflate.h b/src/stable/deflate.h index f835cfc..114b173 100644 --- a/src/stable/deflate.h +++ b/src/stable/deflate.h | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/stable/exceptionbase.cpp b/src/stable/exceptionbase.cpp index 13a98db..87e7127 100644 --- a/src/stable/exceptionbase.cpp +++ b/src/stable/exceptionbase.cpp | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/stable/exceptionbase.h b/src/stable/exceptionbase.h index b6ad9ca..9e6c72d 100644 --- a/src/stable/exceptionbase.h +++ b/src/stable/exceptionbase.h | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/stable/extratypes.h b/src/stable/extratypes.h index 656cd6d..2961920 100644 --- a/src/stable/extratypes.h +++ b/src/stable/extratypes.h | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/stable/file.cpp b/src/stable/file.cpp index 8c8f540..8d10596 100644 --- a/src/stable/file.cpp +++ b/src/stable/file.cpp | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/stable/file.h b/src/stable/file.h index e3225fa..eaf2974 100644 --- a/src/stable/file.h +++ b/src/stable/file.h | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/stable/filter.cpp b/src/stable/filter.cpp index 3fe8f0e..9c1d66f 100644 --- a/src/stable/filter.cpp +++ b/src/stable/filter.cpp | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/stable/filter.h b/src/stable/filter.h index 2c57805..3e1c7d8 100644 --- a/src/stable/filter.h +++ b/src/stable/filter.h | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/stable/formatter.cpp b/src/stable/formatter.cpp index f275d71..2f3c382 100644 --- a/src/stable/formatter.cpp +++ b/src/stable/formatter.cpp | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/stable/formatter.h b/src/stable/formatter.h index a440ec3..9b9e501 100644 --- a/src/stable/formatter.h +++ b/src/stable/formatter.h | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/stable/formula.cpp b/src/stable/formula.cpp index ac435ed..6bc2c58 100644 --- a/src/stable/formula.cpp +++ b/src/stable/formula.cpp | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/stable/formula.h b/src/stable/formula.h index 687e6c3..36a0398 100644 --- a/src/stable/formula.h +++ b/src/stable/formula.h | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/stable/hash.cpp b/src/stable/hash.cpp index 59572ec..f44104b 100644 --- a/src/stable/hash.cpp +++ b/src/stable/hash.cpp | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/stable/hash.h b/src/stable/hash.h index 71aec73..c7554a8 100644 --- a/src/stable/hash.h +++ b/src/stable/hash.h | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/stable/heap.cpp b/src/stable/heap.cpp index a2ffac2..56394cf 100644 --- a/src/stable/heap.cpp +++ b/src/stable/heap.cpp | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/stable/heap.h b/src/stable/heap.h index afe8be6..a813f92 100644 --- a/src/stable/heap.h +++ b/src/stable/heap.h | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/stable/hex.cpp b/src/stable/hex.cpp index 2a04c6f..3e6a22e 100644 --- a/src/stable/hex.cpp +++ b/src/stable/hex.cpp | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/stable/hex.h b/src/stable/hex.h index 3595fae..a89e93d 100644 --- a/src/stable/hex.h +++ b/src/stable/hex.h | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/stable/list.cpp b/src/stable/list.cpp index e05765e..9d2daf2 100644 --- a/src/stable/list.cpp +++ b/src/stable/list.cpp | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/stable/list.h b/src/stable/list.h index 21ba0b5..0afed96 100644 --- a/src/stable/list.h +++ b/src/stable/list.h | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/stable/logger.cpp b/src/stable/logger.cpp index 8e46390..fa0987e 100644 --- a/src/stable/logger.cpp +++ b/src/stable/logger.cpp | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/stable/logger.h b/src/stable/logger.h index 5c1352b..198ffa2 100644 --- a/src/stable/logger.h +++ b/src/stable/logger.h | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/stable/lzma.cpp b/src/stable/lzma.cpp index 6ed0806..f4d5ebd 100644 --- a/src/stable/lzma.cpp +++ b/src/stable/lzma.cpp | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/stable/lzma.h b/src/stable/lzma.h index 090da8d..7118a6b 100644 --- a/src/stable/lzma.h +++ b/src/stable/lzma.h | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/stable/md5.cpp b/src/stable/md5.cpp index 15cba17..c1d993f 100644 --- a/src/stable/md5.cpp +++ b/src/stable/md5.cpp | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/stable/md5.h b/src/stable/md5.h index b7597fd..cb7d396 100644 --- a/src/stable/md5.h +++ b/src/stable/md5.h | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/stable/membuf.cpp b/src/stable/membuf.cpp index 14d0d58..dea9a0e 100644 --- a/src/stable/membuf.cpp +++ b/src/stable/membuf.cpp | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/stable/membuf.h b/src/stable/membuf.h index 544dc83..f016974 100644 --- a/src/stable/membuf.h +++ b/src/stable/membuf.h | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/stable/minicron.cpp b/src/stable/minicron.cpp index 95cf66b..87296ae 100644 --- a/src/stable/minicron.cpp +++ b/src/stable/minicron.cpp | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/stable/minicron.h b/src/stable/minicron.h index 0d1cb62..53e5156 100644 --- a/src/stable/minicron.h +++ b/src/stable/minicron.h | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/stable/multiserver.cpp b/src/stable/multiserver.cpp index bd598ed..8856117 100644 --- a/src/stable/multiserver.cpp +++ b/src/stable/multiserver.cpp | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/stable/multiserver.h b/src/stable/multiserver.h index e3b3ec3..b2f633a 100644 --- a/src/stable/multiserver.h +++ b/src/stable/multiserver.h | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/stable/mutex.cpp b/src/stable/mutex.cpp index dbaaece..947364c 100644 --- a/src/stable/mutex.cpp +++ b/src/stable/mutex.cpp | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/stable/mutex.h b/src/stable/mutex.h index b5c8b7a..1898118 100644 --- a/src/stable/mutex.h +++ b/src/stable/mutex.h | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/stable/myriad.cpp b/src/stable/myriad.cpp index 9030b83..7246df3 100644 --- a/src/stable/myriad.cpp +++ b/src/stable/myriad.cpp | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/stable/myriad.h b/src/stable/myriad.h index 14e8c73..80b5c2b 100644 --- a/src/stable/myriad.h +++ b/src/stable/myriad.h | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/stable/myriadstream.cpp b/src/stable/myriadstream.cpp index e6e94bc..cb81355 100644 --- a/src/stable/myriadstream.cpp +++ b/src/stable/myriadstream.cpp | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/stable/myriadstream.h b/src/stable/myriadstream.h index fdad669..7cc2fc0 100644 --- a/src/stable/myriadstream.h +++ b/src/stable/myriadstream.h | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/stable/nullstream.cpp b/src/stable/nullstream.cpp index 9552cc5..0dcede2 100644 --- a/src/stable/nullstream.cpp +++ b/src/stable/nullstream.cpp | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/stable/nullstream.h b/src/stable/nullstream.h index 9b75332..034b0c5 100644 --- a/src/stable/nullstream.h +++ b/src/stable/nullstream.h | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/stable/optparser.cpp b/src/stable/optparser.cpp index 050232c..10a8fb6 100644 --- a/src/stable/optparser.cpp +++ b/src/stable/optparser.cpp | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/stable/optparser.h b/src/stable/optparser.h index f2fe531..2da93c9 100644 --- a/src/stable/optparser.h +++ b/src/stable/optparser.h | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/stable/pearsonhash.cpp b/src/stable/pearsonhash.cpp index d753d20..d4e82df 100644 --- a/src/stable/pearsonhash.cpp +++ b/src/stable/pearsonhash.cpp | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/stable/pearsonhash.h b/src/stable/pearsonhash.h index 2a9cfa7..ca377c1 100644 --- a/src/stable/pearsonhash.h +++ b/src/stable/pearsonhash.h | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/stable/plugger.cpp b/src/stable/plugger.cpp index fb6850a..ba2b92c 100644 --- a/src/stable/plugger.cpp +++ b/src/stable/plugger.cpp | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/stable/plugger.h b/src/stable/plugger.h index c22f964..d9eaf34 100644 --- a/src/stable/plugger.h +++ b/src/stable/plugger.h | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/stable/process.cpp b/src/stable/process.cpp index b19205c..a1adb23 100644 --- a/src/stable/process.cpp +++ b/src/stable/process.cpp | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/stable/process.h b/src/stable/process.h index 1ca6dd2..904606a 100644 --- a/src/stable/process.h +++ b/src/stable/process.h | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/stable/protocol.cpp b/src/stable/protocol.cpp index 2489d05..e6655b6 100644 --- a/src/stable/protocol.cpp +++ b/src/stable/protocol.cpp | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/stable/protocol.h b/src/stable/protocol.h index 0058723..1a02143 100644 --- a/src/stable/protocol.h +++ b/src/stable/protocol.h | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/stable/protocolhttp.cpp b/src/stable/protocolhttp.cpp index eaee9d0..ea1a86e 100644 --- a/src/stable/protocolhttp.cpp +++ b/src/stable/protocolhttp.cpp | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/stable/protocolhttp.h b/src/stable/protocolhttp.h index 153a00d..87dc49b 100644 --- a/src/stable/protocolhttp.h +++ b/src/stable/protocolhttp.h | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/stable/protocoltelnet.cpp b/src/stable/protocoltelnet.cpp index 7e37cca..aed23be 100644 --- a/src/stable/protocoltelnet.cpp +++ b/src/stable/protocoltelnet.cpp | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/stable/protocoltelnet.h b/src/stable/protocoltelnet.h index 74d6478..9a13496 100644 --- a/src/stable/protocoltelnet.h +++ b/src/stable/protocoltelnet.h | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/stable/queue.cpp b/src/stable/queue.cpp index 9d6edac..0e50ab2 100644 --- a/src/stable/queue.cpp +++ b/src/stable/queue.cpp | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/stable/queue.h b/src/stable/queue.h index e5d9b5f..a5f41e9 100644 --- a/src/stable/queue.h +++ b/src/stable/queue.h | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/stable/queuebuf.cpp b/src/stable/queuebuf.cpp index 98d8ee0..8a3397f 100644 --- a/src/stable/queuebuf.cpp +++ b/src/stable/queuebuf.cpp | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/stable/queuebuf.h b/src/stable/queuebuf.h index 929ca35..6e2a075 100644 --- a/src/stable/queuebuf.h +++ b/src/stable/queuebuf.h | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/stable/ringbuffer.cpp b/src/stable/ringbuffer.cpp index 99b1b1c..1328e7a 100644 --- a/src/stable/ringbuffer.cpp +++ b/src/stable/ringbuffer.cpp | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/stable/ringbuffer.h b/src/stable/ringbuffer.h index f43773d..d4b5993 100644 --- a/src/stable/ringbuffer.h +++ b/src/stable/ringbuffer.h | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/stable/server.cpp b/src/stable/server.cpp index 1972a3f..e4769a5 100644 --- a/src/stable/server.cpp +++ b/src/stable/server.cpp | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/stable/server.h b/src/stable/server.h index c59543a..68e5205 100644 --- a/src/stable/server.h +++ b/src/stable/server.h | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/stable/sha1.cpp b/src/stable/sha1.cpp index bfe4c5a..e6a85cc 100644 --- a/src/stable/sha1.cpp +++ b/src/stable/sha1.cpp | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/stable/sha1.h b/src/stable/sha1.h index 1b7f6df..e861f94 100644 --- a/src/stable/sha1.h +++ b/src/stable/sha1.h | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/stable/sharedcore.cpp b/src/stable/sharedcore.cpp index 75f92eb..ddab521 100644 --- a/src/stable/sharedcore.cpp +++ b/src/stable/sharedcore.cpp | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/stable/sharedcore.h b/src/stable/sharedcore.h index bf9395c..f000077 100644 --- a/src/stable/sharedcore.h +++ b/src/stable/sharedcore.h | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/stable/signals.cpp b/src/stable/signals.cpp index ffbc7ba..f2bcd96 100644 --- a/src/stable/signals.cpp +++ b/src/stable/signals.cpp | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/stable/singleton.h b/src/stable/singleton.h index 13db01b..6fe2777 100644 --- a/src/stable/singleton.h +++ b/src/stable/singleton.h | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/stable/sio.cpp b/src/stable/sio.cpp index 5f8e234..02ba631 100644 --- a/src/stable/sio.cpp +++ b/src/stable/sio.cpp | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/stable/sio.h b/src/stable/sio.h index 9f2cd05..cc7b098 100644 --- a/src/stable/sio.h +++ b/src/stable/sio.h | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/stable/sptr.cpp b/src/stable/sptr.cpp index ea21e3b..d1b774d 100644 --- a/src/stable/sptr.cpp +++ b/src/stable/sptr.cpp | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/stable/sptr.h b/src/stable/sptr.h index 4eb5a52..58ea223 100644 --- a/src/stable/sptr.h +++ b/src/stable/sptr.h | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/stable/stack.cpp b/src/stable/stack.cpp index 73352d3..2aec363 100644 --- a/src/stable/stack.cpp +++ b/src/stable/stack.cpp | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/stable/stack.h b/src/stable/stack.h index 0d1ed3c..f60907d 100644 --- a/src/stable/stack.h +++ b/src/stable/stack.h | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/stable/staticmembuf.cpp b/src/stable/staticmembuf.cpp index 74fae31..d470916 100644 --- a/src/stable/staticmembuf.cpp +++ b/src/stable/staticmembuf.cpp | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/stable/staticmembuf.h b/src/stable/staticmembuf.h index f168de3..332e27d 100644 --- a/src/stable/staticmembuf.h +++ b/src/stable/staticmembuf.h | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/stable/stdstream.cpp b/src/stable/stdstream.cpp index b1d5d61..9bc22f2 100644 --- a/src/stable/stdstream.cpp +++ b/src/stable/stdstream.cpp | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/stable/stdstream.h b/src/stable/stdstream.h index ff6c774..c3ab153 100644 --- a/src/stable/stdstream.h +++ b/src/stable/stdstream.h | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/stable/stream.cpp b/src/stable/stream.cpp index 58641cc..23a7f0f 100644 --- a/src/stable/stream.cpp +++ b/src/stable/stream.cpp | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/stable/stream.h b/src/stable/stream.h index b35f6ee..21e090e 100644 --- a/src/stable/stream.h +++ b/src/stable/stream.h | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/stable/streamstack.cpp b/src/stable/streamstack.cpp index d45306d..47ae5c0 100644 --- a/src/stable/streamstack.cpp +++ b/src/stable/streamstack.cpp | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/stable/streamstack.h b/src/stable/streamstack.h index 846935b..36c2e11 100644 --- a/src/stable/streamstack.h +++ b/src/stable/streamstack.h | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/stable/string.cpp b/src/stable/string.cpp index 1a9018b..621da93 100644 --- a/src/stable/string.cpp +++ b/src/stable/string.cpp | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/stable/string.h b/src/stable/string.h index a9006d1..82b903b 100644 --- a/src/stable/string.h +++ b/src/stable/string.h | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/stable/substream.cpp b/src/stable/substream.cpp index c201752..7e3729b 100644 --- a/src/stable/substream.cpp +++ b/src/stable/substream.cpp | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/stable/substream.h b/src/stable/substream.h index 1db4d6c..5905043 100644 --- a/src/stable/substream.h +++ b/src/stable/substream.h | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/stable/synchroatom.h b/src/stable/synchroatom.h index fb02054..2822b20 100644 --- a/src/stable/synchroatom.h +++ b/src/stable/synchroatom.h | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/stable/synchrocounter.cpp b/src/stable/synchrocounter.cpp index 48bbe21..45eed30 100644 --- a/src/stable/synchrocounter.cpp +++ b/src/stable/synchrocounter.cpp | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/stable/synchrocounter.h b/src/stable/synchrocounter.h index d201bee..ef86445 100644 --- a/src/stable/synchrocounter.h +++ b/src/stable/synchrocounter.h | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/stable/synchroheap.cpp b/src/stable/synchroheap.cpp index 5dcce33..dc28cd3 100644 --- a/src/stable/synchroheap.cpp +++ b/src/stable/synchroheap.cpp | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/stable/synchroheap.h b/src/stable/synchroheap.h index 4dd898d..9448625 100644 --- a/src/stable/synchroheap.h +++ b/src/stable/synchroheap.h | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/stable/synchroqueue.h b/src/stable/synchroqueue.h index 79d5e49..a0335f6 100644 --- a/src/stable/synchroqueue.h +++ b/src/stable/synchroqueue.h | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/stable/taf.h b/src/stable/taf.h index 951f80f..5b73dfa 100644 --- a/src/stable/taf.h +++ b/src/stable/taf.h | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/stable/tafcomment.cpp b/src/stable/tafcomment.cpp index c7096ca..ceda8e3 100644 --- a/src/stable/tafcomment.cpp +++ b/src/stable/tafcomment.cpp | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/stable/tafcomment.h b/src/stable/tafcomment.h index 4efd548..80c6399 100644 --- a/src/stable/tafcomment.h +++ b/src/stable/tafcomment.h | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/stable/tafgroup.cpp b/src/stable/tafgroup.cpp index ee180c3..27af09e 100644 --- a/src/stable/tafgroup.cpp +++ b/src/stable/tafgroup.cpp | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/stable/tafgroup.h b/src/stable/tafgroup.h index 119e827..3f52ab3 100644 --- a/src/stable/tafgroup.h +++ b/src/stable/tafgroup.h | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/stable/tafnode.cpp b/src/stable/tafnode.cpp index 0757a46..630bcce 100644 --- a/src/stable/tafnode.cpp +++ b/src/stable/tafnode.cpp | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/stable/tafnode.h b/src/stable/tafnode.h index d7a9159..9c0e0b9 100644 --- a/src/stable/tafnode.h +++ b/src/stable/tafnode.h | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/stable/tafproperty.cpp b/src/stable/tafproperty.cpp index 4ef5c24..017b294 100644 --- a/src/stable/tafproperty.cpp +++ b/src/stable/tafproperty.cpp | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/stable/tafproperty.h b/src/stable/tafproperty.h index 7091de5..b7c6983 100644 --- a/src/stable/tafproperty.h +++ b/src/stable/tafproperty.h | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/stable/tafreader.cpp b/src/stable/tafreader.cpp index 6708c8c..fb17aea 100644 --- a/src/stable/tafreader.cpp +++ b/src/stable/tafreader.cpp | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/stable/tafreader.h b/src/stable/tafreader.h index 10ebfc0..0cf00a9 100644 --- a/src/stable/tafreader.h +++ b/src/stable/tafreader.h | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/stable/tafwriter.cpp b/src/stable/tafwriter.cpp index b24bd1e..00d9f68 100644 --- a/src/stable/tafwriter.cpp +++ b/src/stable/tafwriter.cpp | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/stable/tafwriter.h b/src/stable/tafwriter.h index 3fd71de..7e43d64 100644 --- a/src/stable/tafwriter.h +++ b/src/stable/tafwriter.h | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/stable/tcpserversocket.cpp b/src/stable/tcpserversocket.cpp index a2fe6b4..daedcd1 100644 --- a/src/stable/tcpserversocket.cpp +++ b/src/stable/tcpserversocket.cpp | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/stable/tcpserversocket.h b/src/stable/tcpserversocket.h index efb7287..0f56bd6 100644 --- a/src/stable/tcpserversocket.h +++ b/src/stable/tcpserversocket.h | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/stable/tcpsocket.cpp b/src/stable/tcpsocket.cpp index b9b215c..7ea6ca1 100644 --- a/src/stable/tcpsocket.cpp +++ b/src/stable/tcpsocket.cpp | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/stable/tcpsocket.h b/src/stable/tcpsocket.h index 52218bd..92b3c1f 100644 --- a/src/stable/tcpsocket.h +++ b/src/stable/tcpsocket.h | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/stable/thread.cpp b/src/stable/thread.cpp index 9cf223e..1bd2040 100644 --- a/src/stable/thread.cpp +++ b/src/stable/thread.cpp | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/stable/thread.h b/src/stable/thread.h index 0a0d8bb..f0456f3 100644 --- a/src/stable/thread.h +++ b/src/stable/thread.h | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/stable/trace.cpp b/src/stable/trace.cpp index 03181e9..c072fd9 100644 --- a/src/stable/trace.cpp +++ b/src/stable/trace.cpp | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/stable/trace.h b/src/stable/trace.h index 51dfb8e..da67f03 100644 --- a/src/stable/trace.h +++ b/src/stable/trace.h | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/stable/unitsuite.cpp b/src/stable/unitsuite.cpp index e508c6f..b6057d0 100644 --- a/src/stable/unitsuite.cpp +++ b/src/stable/unitsuite.cpp | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/stable/unitsuite.h b/src/stable/unitsuite.h index 6915fb4..3442753 100644 --- a/src/stable/unitsuite.h +++ b/src/stable/unitsuite.h | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/stable/util.cpp b/src/stable/util.cpp index 6983dfd..b42e040 100644 --- a/src/stable/util.cpp +++ b/src/stable/util.cpp | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/stable/util.h b/src/stable/util.h index 691184d..087af6e 100644 --- a/src/stable/util.h +++ b/src/stable/util.h | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/stable/variant.cpp b/src/stable/variant.cpp index 5cdaa5b..5100e9c 100644 --- a/src/stable/variant.cpp +++ b/src/stable/variant.cpp | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/stable/variant.h b/src/stable/variant.h index 45e3339..6837954 100644 --- a/src/stable/variant.h +++ b/src/stable/variant.h | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/tests/base64.cpp b/src/tests/base64.cpp index 413ff92..1e1892d 100644 --- a/src/tests/base64.cpp +++ b/src/tests/base64.cpp | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/tests/bzip2.cpp b/src/tests/bzip2.cpp index 4de06d2..1b6fc2f 100644 --- a/src/tests/bzip2.cpp +++ b/src/tests/bzip2.cpp | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/tests/deflate.cpp b/src/tests/deflate.cpp index 9796408..8290ed5 100644 --- a/src/tests/deflate.cpp +++ b/src/tests/deflate.cpp | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/tests/lzma.cpp b/src/tests/lzma.cpp index 752357a..596c396 100644 --- a/src/tests/lzma.cpp +++ b/src/tests/lzma.cpp | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/tests/optparser.cpp b/src/tests/optparser.cpp index 4892942..772cebc 100644 --- a/src/tests/optparser.cpp +++ b/src/tests/optparser.cpp | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/tests/taf.cpp b/src/tests/taf.cpp index 1703fbc..e4354f7 100644 --- a/src/tests/taf.cpp +++ b/src/tests/taf.cpp | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/tests/uuid.cpp b/src/tests/uuid.cpp index d2f67b1..d612ad5 100644 --- a/src/tests/uuid.cpp +++ b/src/tests/uuid.cpp | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/tools/bnfcompile.cpp b/src/tools/bnfcompile.cpp index defb16b..af7a0eb 100644 --- a/src/tools/bnfcompile.cpp +++ b/src/tools/bnfcompile.cpp | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/tools/mkunit.cpp b/src/tools/mkunit.cpp index 741a888..d634feb 100644 --- a/src/tools/mkunit.cpp +++ b/src/tools/mkunit.cpp | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/tools/myriad.cpp b/src/tools/myriad.cpp index 30b936c..7cab628 100644 --- a/src/tools/myriad.cpp +++ b/src/tools/myriad.cpp | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/tools/parser.cpp b/src/tools/parser.cpp index 7d35f12..af53bc8 100644 --- a/src/tools/parser.cpp +++ b/src/tools/parser.cpp | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/tools/viewcsv.cpp b/src/tools/viewcsv.cpp index 6997b9b..46db319 100644 --- a/src/tools/viewcsv.cpp +++ b/src/tools/viewcsv.cpp | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/unit/archive.unit b/src/unit/archive.unit index 89fde0c..359f380 100644 --- a/src/unit/archive.unit +++ b/src/unit/archive.unit | |||
@@ -1,6 +1,6 @@ | |||
1 | // vim: syntax=cpp | 1 | // vim: syntax=cpp |
2 | /* | 2 | /* |
3 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 3 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
4 | * | 4 | * |
5 | * This file is part of the libbu++ library and is released under the | 5 | * This file is part of the libbu++ library and is released under the |
6 | * terms of the license contained in the file LICENSE. | 6 | * terms of the license contained in the file LICENSE. |
diff --git a/src/unit/array.unit b/src/unit/array.unit index f6e6718..6e985d8 100644 --- a/src/unit/array.unit +++ b/src/unit/array.unit | |||
@@ -1,6 +1,6 @@ | |||
1 | // vim: syntax=cpp | 1 | // vim: syntax=cpp |
2 | /* | 2 | /* |
3 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 3 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
4 | * | 4 | * |
5 | * This file is part of the libbu++ library and is released under the | 5 | * This file is part of the libbu++ library and is released under the |
6 | * terms of the license contained in the file LICENSE. | 6 | * terms of the license contained in the file LICENSE. |
diff --git a/src/unit/base64.unit b/src/unit/base64.unit index e4630c5..5266b48 100644 --- a/src/unit/base64.unit +++ b/src/unit/base64.unit | |||
@@ -1,6 +1,6 @@ | |||
1 | // vim: syntax=cpp | 1 | // vim: syntax=cpp |
2 | /* | 2 | /* |
3 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 3 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
4 | * | 4 | * |
5 | * This file is part of the libbu++ library and is released under the | 5 | * This file is part of the libbu++ library and is released under the |
6 | * terms of the license contained in the file LICENSE. | 6 | * terms of the license contained in the file LICENSE. |
diff --git a/src/unit/blowfish.unit b/src/unit/blowfish.unit new file mode 100644 index 0000000..abab63d --- /dev/null +++ b/src/unit/blowfish.unit | |||
@@ -0,0 +1,78 @@ | |||
1 | // vim: syntax=cpp | ||
2 | /* | ||
3 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. | ||
4 | * | ||
5 | * This file is part of the libbu++ library and is released under the | ||
6 | * terms of the license contained in the file LICENSE. | ||
7 | */ | ||
8 | |||
9 | #include "bu/blowfish.h" | ||
10 | #include "bu/hex.h" | ||
11 | #include "bu/strfilter.h" | ||
12 | |||
13 | #include "bu/sio.h" | ||
14 | |||
15 | static const char *testdat[34][3] ={ | ||
16 | {"0000000000000000", "0000000000000000", "4EF997456198DD78"}, | ||
17 | {"FFFFFFFFFFFFFFFF", "FFFFFFFFFFFFFFFF", "51866FD5B85ECB8A"}, | ||
18 | {"3000000000000000", "1000000000000001", "7D856F9A613063F2"}, | ||
19 | {"1111111111111111", "1111111111111111", "2466DD878B963C9D"}, | ||
20 | {"0123456789ABCDEF", "1111111111111111", "61F9C3802281B096"}, | ||
21 | {"1111111111111111", "0123456789ABCDEF", "7D0CC630AFDA1EC7"}, | ||
22 | {"0000000000000000", "0000000000000000", "4EF997456198DD78"}, | ||
23 | {"FEDCBA9876543210", "0123456789ABCDEF", "0ACEAB0FC6A0A28D"}, | ||
24 | {"7CA110454A1A6E57", "01A1D6D039776742", "59C68245EB05282B"}, | ||
25 | {"0131D9619DC1376E", "5CD54CA83DEF57DA", "B1B8CC0B250F09A0"}, | ||
26 | {"07A1133E4A0B2686", "0248D43806F67172", "1730E5778BEA1DA4"}, | ||
27 | {"3849674C2602319E", "51454B582DDF440A", "A25E7856CF2651EB"}, | ||
28 | {"04B915BA43FEB5B6", "42FD443059577FA2", "353882B109CE8F1A"}, | ||
29 | {"0113B970FD34F2CE", "059B5E0851CF143A", "48F4D0884C379918"}, | ||
30 | {"0170F175468FB5E6", "0756D8E0774761D2", "432193B78951FC98"}, | ||
31 | {"43297FAD38E373FE", "762514B829BF486A", "13F04154D69D1AE5"}, | ||
32 | {"07A7137045DA2A16", "3BDD119049372802", "2EEDDA93FFD39C79"}, | ||
33 | {"04689104C2FD3B2F", "26955F6835AF609A", "D887E0393C2DA6E3"}, | ||
34 | {"37D06BB516CB7546", "164D5E404F275232", "5F99D04F5B163969"}, | ||
35 | {"1F08260D1AC2465E", "6B056E18759F5CCA", "4A057A3B24D3977B"}, | ||
36 | {"584023641ABA6176", "004BD6EF09176062", "452031C1E4FADA8E"}, | ||
37 | {"025816164629B007", "480D39006EE762F2", "7555AE39F59B87BD"}, | ||
38 | {"49793EBC79B3258F", "437540C8698F3CFA", "53C55F9CB49FC019"}, | ||
39 | {"4FB05E1515AB73A7", "072D43A077075292", "7A8E7BFA937E89A3"}, | ||
40 | {"49E95D6D4CA229BF", "02FE55778117F12A", "CF9C5D7A4986ADB5"}, | ||
41 | {"018310DC409B26D6", "1D9D5C5018F728C2", "D1ABB290658BC778"}, | ||
42 | {"1C587F1C13924FEF", "305532286D6F295A", "55CB3774D13EF201"}, | ||
43 | {"0101010101010101", "0123456789ABCDEF", "FA34EC4847B268B2"}, | ||
44 | {"1F1F1F1F0E0E0E0E", "0123456789ABCDEF", "A790795108EA3CAE"}, | ||
45 | {"E0FEE0FEF1FEF1FE", "0123456789ABCDEF", "C39E072D9FAC631D"}, | ||
46 | {"0000000000000000", "FFFFFFFFFFFFFFFF", "014933E0CDAFF6E4"}, | ||
47 | {"FFFFFFFFFFFFFFFF", "0000000000000000", "F21E9A77B71C49BC"}, | ||
48 | {"0123456789ABCDEF", "0000000000000000", "245946885754369A"}, | ||
49 | {"FEDCBA9876543210", "FFFFFFFFFFFFFFFF", "6B5C5A9C5D9E0A5A"}}; | ||
50 | |||
51 | suite Blowfish | ||
52 | { | ||
53 | test standard | ||
54 | { | ||
55 | for( int j = 0; j < 34; j++ ) | ||
56 | { | ||
57 | Bu::MemBuf mb; | ||
58 | Bu::BlowfishEcb bf( mb ); | ||
59 | bf.setPassword( Bu::decodeStr<Bu::Hex>( testdat[j][0] ) ); | ||
60 | bf.write( Bu::decodeStr<Bu::Hex>( testdat[j][1] ) ); | ||
61 | unitTest( | ||
62 | mb.getString() == Bu::decodeStr<Bu::Hex>( testdat[j][2] ) | ||
63 | ); | ||
64 | |||
65 | mb.setPos( 0 ); | ||
66 | Bu::BlowfishEcb bf2( mb ); | ||
67 | bf2.setPassword( Bu::decodeStr<Bu::Hex>( testdat[j][0] ) ); | ||
68 | char buf[8]; | ||
69 | bf2.read( buf, 8 ); | ||
70 | |||
71 | unitTest( | ||
72 | Bu::String(testdat[j][1]) == | ||
73 | Bu::encodeStr<Bu::Hex>(Bu::String(buf,8),true) | ||
74 | ); | ||
75 | } | ||
76 | } | ||
77 | } | ||
78 | |||
diff --git a/src/unit/buffer.unit b/src/unit/buffer.unit index 8106e4e..8bfdc3d 100644 --- a/src/unit/buffer.unit +++ b/src/unit/buffer.unit | |||
@@ -1,6 +1,6 @@ | |||
1 | // vim: syntax=cpp | 1 | // vim: syntax=cpp |
2 | /* | 2 | /* |
3 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 3 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
4 | * | 4 | * |
5 | * This file is part of the libbu++ library and is released under the | 5 | * This file is part of the libbu++ library and is released under the |
6 | * terms of the license contained in the file LICENSE. | 6 | * terms of the license contained in the file LICENSE. |
diff --git a/src/unit/entities/unit b/src/unit/entities/unit index 4c5a835..2b5e637 100644 --- a/src/unit/entities/unit +++ b/src/unit/entities/unit | |||
@@ -5,7 +5,7 @@ | |||
5 | name="source" | 5 | name="source" |
6 | filename="{=name:%tolower}.cpp" | 6 | filename="{=name:%tolower}.cpp" |
7 | >/* | 7 | >/* |
8 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 8 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
9 | * | 9 | * |
10 | * This file is part of the libbu++ library and is released under the | 10 | * This file is part of the libbu++ library and is released under the |
11 | * terms of the license contained in the file LICENSE. | 11 | * terms of the license contained in the file LICENSE. |
diff --git a/src/unit/file.unit b/src/unit/file.unit index efca4f1..7140d03 100644 --- a/src/unit/file.unit +++ b/src/unit/file.unit | |||
@@ -1,6 +1,6 @@ | |||
1 | // vim: syntax=cpp | 1 | // vim: syntax=cpp |
2 | /* | 2 | /* |
3 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 3 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
4 | * | 4 | * |
5 | * This file is part of the libbu++ library and is released under the | 5 | * This file is part of the libbu++ library and is released under the |
6 | * terms of the license contained in the file LICENSE. | 6 | * terms of the license contained in the file LICENSE. |
diff --git a/src/unit/hash.unit b/src/unit/hash.unit index 7148693..3abc6a5 100644 --- a/src/unit/hash.unit +++ b/src/unit/hash.unit | |||
@@ -1,6 +1,6 @@ | |||
1 | // vim: syntax=cpp | 1 | // vim: syntax=cpp |
2 | /* | 2 | /* |
3 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 3 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
4 | * | 4 | * |
5 | * This file is part of the libbu++ library and is released under the | 5 | * This file is part of the libbu++ library and is released under the |
6 | * terms of the license contained in the file LICENSE. | 6 | * terms of the license contained in the file LICENSE. |
diff --git a/src/unit/list.unit b/src/unit/list.unit index 2b315dc..ec92fd5 100644 --- a/src/unit/list.unit +++ b/src/unit/list.unit | |||
@@ -1,6 +1,6 @@ | |||
1 | // vim: syntax=cpp | 1 | // vim: syntax=cpp |
2 | /* | 2 | /* |
3 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 3 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
4 | * | 4 | * |
5 | * This file is part of the libbu++ library and is released under the | 5 | * This file is part of the libbu++ library and is released under the |
6 | * terms of the license contained in the file LICENSE. | 6 | * terms of the license contained in the file LICENSE. |
diff --git a/src/unit/membuf.unit b/src/unit/membuf.unit index aefc2c1..37ea77e 100644 --- a/src/unit/membuf.unit +++ b/src/unit/membuf.unit | |||
@@ -1,6 +1,6 @@ | |||
1 | // vim: syntax=cpp | 1 | // vim: syntax=cpp |
2 | /* | 2 | /* |
3 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 3 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
4 | * | 4 | * |
5 | * This file is part of the libbu++ library and is released under the | 5 | * This file is part of the libbu++ library and is released under the |
6 | * terms of the license contained in the file LICENSE. | 6 | * terms of the license contained in the file LICENSE. |
diff --git a/src/unit/myriad.unit b/src/unit/myriad.unit index e0f7ef4..8c96f79 100644 --- a/src/unit/myriad.unit +++ b/src/unit/myriad.unit | |||
@@ -1,6 +1,6 @@ | |||
1 | // vim: syntax=cpp | 1 | // vim: syntax=cpp |
2 | /* | 2 | /* |
3 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 3 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
4 | * | 4 | * |
5 | * This file is part of the libbu++ library and is released under the | 5 | * This file is part of the libbu++ library and is released under the |
6 | * terms of the license contained in the file LICENSE. | 6 | * terms of the license contained in the file LICENSE. |
diff --git a/src/unit/queuebuf.unit b/src/unit/queuebuf.unit index 605490e..553d9fc 100644 --- a/src/unit/queuebuf.unit +++ b/src/unit/queuebuf.unit | |||
@@ -1,6 +1,6 @@ | |||
1 | // vim: syntax=cpp | 1 | // vim: syntax=cpp |
2 | /* | 2 | /* |
3 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 3 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
4 | * | 4 | * |
5 | * This file is part of the libbu++ library and is released under the | 5 | * This file is part of the libbu++ library and is released under the |
6 | * terms of the license contained in the file LICENSE. | 6 | * terms of the license contained in the file LICENSE. |
diff --git a/src/unit/string.unit b/src/unit/string.unit index 5298f8a..acef0d5 100644 --- a/src/unit/string.unit +++ b/src/unit/string.unit | |||
@@ -1,6 +1,6 @@ | |||
1 | // vim: syntax=cpp | 1 | // vim: syntax=cpp |
2 | /* | 2 | /* |
3 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 3 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
4 | * | 4 | * |
5 | * This file is part of the libbu++ library and is released under the | 5 | * This file is part of the libbu++ library and is released under the |
6 | * terms of the license contained in the file LICENSE. | 6 | * terms of the license contained in the file LICENSE. |
diff --git a/src/unit/substream.unit b/src/unit/substream.unit index 456e69a..c66238d 100644 --- a/src/unit/substream.unit +++ b/src/unit/substream.unit | |||
@@ -1,6 +1,6 @@ | |||
1 | // vim: syntax=cpp | 1 | // vim: syntax=cpp |
2 | /* | 2 | /* |
3 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 3 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
4 | * | 4 | * |
5 | * This file is part of the libbu++ library and is released under the | 5 | * This file is part of the libbu++ library and is released under the |
6 | * terms of the license contained in the file LICENSE. | 6 | * terms of the license contained in the file LICENSE. |
diff --git a/src/unit/taf.unit b/src/unit/taf.unit index 5fedcec..12e93c2 100644 --- a/src/unit/taf.unit +++ b/src/unit/taf.unit | |||
@@ -1,6 +1,6 @@ | |||
1 | // vim: syntax=cpp | 1 | // vim: syntax=cpp |
2 | /* | 2 | /* |
3 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 3 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
4 | * | 4 | * |
5 | * This file is part of the libbu++ library and is released under the | 5 | * This file is part of the libbu++ library and is released under the |
6 | * terms of the license contained in the file LICENSE. | 6 | * terms of the license contained in the file LICENSE. |
diff --git a/src/unit/variant.unit b/src/unit/variant.unit index 53abdc0..684bea1 100644 --- a/src/unit/variant.unit +++ b/src/unit/variant.unit | |||
@@ -1,6 +1,6 @@ | |||
1 | // vim: syntax=cpp | 1 | // vim: syntax=cpp |
2 | /* | 2 | /* |
3 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 3 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
4 | * | 4 | * |
5 | * This file is part of the libbu++ library and is released under the | 5 | * This file is part of the libbu++ library and is released under the |
6 | * terms of the license contained in the file LICENSE. | 6 | * terms of the license contained in the file LICENSE. |
diff --git a/src/unit/xml.unit b/src/unit/xml.unit index ab339c2..0db21c1 100644 --- a/src/unit/xml.unit +++ b/src/unit/xml.unit | |||
@@ -1,6 +1,6 @@ | |||
1 | // vim: syntax=cpp | 1 | // vim: syntax=cpp |
2 | /* | 2 | /* |
3 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 3 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
4 | * | 4 | * |
5 | * This file is part of the libbu++ library and is released under the | 5 | * This file is part of the libbu++ library and is released under the |
6 | * terms of the license contained in the file LICENSE. | 6 | * terms of the license contained in the file LICENSE. |
diff --git a/src/unstable/bitstring.cpp b/src/unstable/bitstring.cpp index bdd1bc2..c32240c 100644 --- a/src/unstable/bitstring.cpp +++ b/src/unstable/bitstring.cpp | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/unstable/bitstring.h b/src/unstable/bitstring.h index 7a8fc48..fd34402 100644 --- a/src/unstable/bitstring.h +++ b/src/unstable/bitstring.h | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/unstable/fifo.cpp b/src/unstable/fifo.cpp index b0cf1c7..6f327df 100644 --- a/src/unstable/fifo.cpp +++ b/src/unstable/fifo.cpp | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/unstable/fifo.h b/src/unstable/fifo.h index 18a70ba..ea32f04 100644 --- a/src/unstable/fifo.h +++ b/src/unstable/fifo.h | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/unstable/itoserver.cpp b/src/unstable/itoserver.cpp index c7165e2..5b3b5a2 100644 --- a/src/unstable/itoserver.cpp +++ b/src/unstable/itoserver.cpp | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/unstable/itoserver.h b/src/unstable/itoserver.h index 81db4e2..57fece3 100644 --- a/src/unstable/itoserver.h +++ b/src/unstable/itoserver.h | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/unstable/minimacro.cpp b/src/unstable/minimacro.cpp index b6fd6a8..ff12267 100644 --- a/src/unstable/minimacro.cpp +++ b/src/unstable/minimacro.cpp | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/unstable/minimacro.h b/src/unstable/minimacro.h index b6c7c13..dc38891 100644 --- a/src/unstable/minimacro.h +++ b/src/unstable/minimacro.h | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/unstable/myriadfs.cpp b/src/unstable/myriadfs.cpp index 6884a31..32e1ad6 100644 --- a/src/unstable/myriadfs.cpp +++ b/src/unstable/myriadfs.cpp | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/unstable/myriadfs.h b/src/unstable/myriadfs.h index cc9961a..126be7a 100644 --- a/src/unstable/myriadfs.h +++ b/src/unstable/myriadfs.h | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/unstable/newline.cpp b/src/unstable/newline.cpp index ffc9eb0..c7eb94c 100644 --- a/src/unstable/newline.cpp +++ b/src/unstable/newline.cpp | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/unstable/newline.h b/src/unstable/newline.h index afe0a84..417f8cc 100644 --- a/src/unstable/newline.h +++ b/src/unstable/newline.h | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/unstable/udpsocket.cpp b/src/unstable/udpsocket.cpp index 702840a..f554165 100644 --- a/src/unstable/udpsocket.cpp +++ b/src/unstable/udpsocket.cpp | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/unstable/udpsocket.h b/src/unstable/udpsocket.h index f228f08..8f8630a 100644 --- a/src/unstable/udpsocket.h +++ b/src/unstable/udpsocket.h | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/unstable/url.cpp b/src/unstable/url.cpp index 7b4a48e..3c9da4b 100644 --- a/src/unstable/url.cpp +++ b/src/unstable/url.cpp | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/unstable/url.h b/src/unstable/url.h index d751578..34a335d 100644 --- a/src/unstable/url.h +++ b/src/unstable/url.h | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/unstable/urn.cpp b/src/unstable/urn.cpp index 106fb64..c792772 100644 --- a/src/unstable/urn.cpp +++ b/src/unstable/urn.cpp | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/unstable/urn.h b/src/unstable/urn.h index 106fb64..c792772 100644 --- a/src/unstable/urn.h +++ b/src/unstable/urn.h | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/unstable/utfstring.cpp b/src/unstable/utfstring.cpp index 19d3ddc..a5d6605 100644 --- a/src/unstable/utfstring.cpp +++ b/src/unstable/utfstring.cpp | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/unstable/utfstring.h b/src/unstable/utfstring.h index 477e272..02b015b 100644 --- a/src/unstable/utfstring.h +++ b/src/unstable/utfstring.h | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/unstable/uuid.cpp b/src/unstable/uuid.cpp index 088450b..fb237d8 100644 --- a/src/unstable/uuid.cpp +++ b/src/unstable/uuid.cpp | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
diff --git a/src/unstable/uuid.h b/src/unstable/uuid.h index 261f653..db4c85b 100644 --- a/src/unstable/uuid.h +++ b/src/unstable/uuid.h | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
@@ -0,0 +1 @@ | |||
0.1 | |||