From: Mikko Rasa Date: Sat, 21 Apr 2007 14:41:09 +0000 (+0000) Subject: Add copyright notices and Id tags X-Git-Tag: strings-1.0~20 X-Git-Url: http://git.tdb.fi/?p=libs%2Fcore.git;a=commitdiff_plain;h=9da6abdcabec59f4845da256a8ad75a810ed1589 Add copyright notices and Id tags --- diff --git a/Build b/Build index 3c44f71..3ad1eda 100644 --- a/Build +++ b/Build @@ -1,3 +1,5 @@ +// $Id$ + package "mspstrings" { require "mspmisc"; diff --git a/jis.py b/jis.py index d28cd80..b167eb3 100755 --- a/jis.py +++ b/jis.py @@ -1,4 +1,5 @@ #!/usr/bin/python +# $Id$ import sys import os diff --git a/source/ascii.cpp b/source/ascii.cpp index 43f7053..6ffaf9a 100644 --- a/source/ascii.cpp +++ b/source/ascii.cpp @@ -1,3 +1,10 @@ +/* $Id$ + +This file is part of libmspstrings +Copyright © 2006-2007 Mikko Rasa +Distributed under the LGPL +*/ + #include "ascii.h" using namespace std; diff --git a/source/ascii.h b/source/ascii.h index de4013d..41af46b 100644 --- a/source/ascii.h +++ b/source/ascii.h @@ -1,3 +1,10 @@ +/* $Id$ + +This file is part of libmspstrings +Copyright © 2006-2007 Mikko Rasa +Distributed under the LGPL +*/ + #ifndef MSP_STRINGS_ASCII_H_ #define MSP_STRINGS_ASCII_H_ diff --git a/source/codec.cpp b/source/codec.cpp index 38ef4ab..ae15382 100644 --- a/source/codec.cpp +++ b/source/codec.cpp @@ -1,3 +1,10 @@ +/* $Id$ + +This file is part of libmspstrings +Copyright © 2006-2007 Mikko Rasa +Distributed under the LGPL +*/ + #include "ascii.h" #include "codec.h" #include "iso2022jp.h" diff --git a/source/codec.h b/source/codec.h index 7acd88f..1f01271 100644 --- a/source/codec.h +++ b/source/codec.h @@ -1,3 +1,10 @@ +/* $Id$ + +This file is part of libmspstrings +Copyright © 2006-2007 Mikko Rasa +Distributed under the LGPL +*/ + #ifndef MSP_STRINGS_CODEC_H_ #define MSP_STRINGS_CODEC_H_ diff --git a/source/fmt.cpp b/source/fmt.cpp index b476c36..05f9be5 100644 --- a/source/fmt.cpp +++ b/source/fmt.cpp @@ -1,3 +1,10 @@ +/* $Id$ + +This file is part of libmspstrings +Copyright © 2006-2007 Mikko Rasa +Distributed under the LGPL +*/ + #include #include "fmt.h" diff --git a/source/fmt.h b/source/fmt.h index 2317ae4..c4b46b5 100644 --- a/source/fmt.h +++ b/source/fmt.h @@ -1,3 +1,10 @@ +/* $Id$ + +This file is part of libmspstrings +Copyright © 2006-2007 Mikko Rasa +Distributed under the LGPL +*/ + #ifndef MSP_STRINGS_FMT_H_ #define MSP_STRINGS_FMT_H_ diff --git a/source/formatter.cpp b/source/formatter.cpp index 8db3f4d..c7b24a5 100644 --- a/source/formatter.cpp +++ b/source/formatter.cpp @@ -1,3 +1,10 @@ +/* $Id$ + +This file is part of libmspstrings +Copyright © 2006-2007 Mikko Rasa +Distributed under the LGPL +*/ + #include "formatter.h" using namespace std; diff --git a/source/formatter.h b/source/formatter.h index 02cd470..521dd55 100644 --- a/source/formatter.h +++ b/source/formatter.h @@ -1,3 +1,10 @@ +/* $Id$ + +This file is part of libmspstrings +Copyright © 2006-2007 Mikko Rasa +Distributed under the LGPL +*/ + #ifndef MSP_STRINGS_FORMATTER_H_ #define MSP_STRINGS_FORMATTER_H_ diff --git a/source/iso2022jp.cpp b/source/iso2022jp.cpp index 5a51a64..de56552 100644 --- a/source/iso2022jp.cpp +++ b/source/iso2022jp.cpp @@ -1,3 +1,10 @@ +/* $Id$ + +This file is part of libmspstrings +Copyright © 2006-2007 Mikko Rasa +Distributed under the LGPL +*/ + #include "ascii.h" #include "iso2022jp.h" #include "jisx0201.h" diff --git a/source/iso2022jp.h b/source/iso2022jp.h index 82803b6..fa8454a 100644 --- a/source/iso2022jp.h +++ b/source/iso2022jp.h @@ -1,3 +1,10 @@ +/* $Id$ + +This file is part of libmspstrings +Copyright © 2006-2007 Mikko Rasa +Distributed under the LGPL +*/ + #ifndef MSP_STRINGS_ISO2022JP_H_ #define MSP_STRINGS_ISO2022JP_H_ diff --git a/source/iso646fi.cpp b/source/iso646fi.cpp index 171c0a0..1874ded 100644 --- a/source/iso646fi.cpp +++ b/source/iso646fi.cpp @@ -1,3 +1,10 @@ +/* $Id$ + +This file is part of libmspstrings +Copyright © 2006-2007 Mikko Rasa +Distributed under the LGPL +*/ + #include "iso646fi.h" using namespace std; diff --git a/source/iso646fi.h b/source/iso646fi.h index 1f0df91..5299054 100644 --- a/source/iso646fi.h +++ b/source/iso646fi.h @@ -1,3 +1,10 @@ +/* $Id$ + +This file is part of libmspstrings +Copyright © 2006-2007 Mikko Rasa +Distributed under the LGPL +*/ + #ifndef MSP_STRINGS_ISO646FI_H_ #define MSP_STRINGS_ISO646FI_H_ diff --git a/source/jisx0201.cpp b/source/jisx0201.cpp index 65abff2..49f8b00 100644 --- a/source/jisx0201.cpp +++ b/source/jisx0201.cpp @@ -1,3 +1,10 @@ +/* $Id$ + +This file is part of libmspstrings +Copyright © 2006-2007 Mikko Rasa +Distributed under the LGPL +*/ + #include "jisx0201.h" using namespace std; diff --git a/source/jisx0201.h b/source/jisx0201.h index bf513f7..8cc1e22 100644 --- a/source/jisx0201.h +++ b/source/jisx0201.h @@ -1,3 +1,10 @@ +/* $Id$ + +This file is part of libmspstrings +Copyright © 2006-2007 Mikko Rasa +Distributed under the LGPL +*/ + #ifndef MSP_STRINGS_JISX201_H_ #define MSP_STRINGS_JISX201_H_ diff --git a/source/jisx0208.cpp b/source/jisx0208.cpp index e24673b..1e5aec7 100644 --- a/source/jisx0208.cpp +++ b/source/jisx0208.cpp @@ -1,3 +1,10 @@ +/* $Id$ + +This file is part of libmspstrings +Copyright © 2006-2007 Mikko Rasa +Distributed under the LGPL +*/ + #include "jisx0208.h" #include "jisx0208.table" diff --git a/source/jisx0208.h b/source/jisx0208.h index 12dc2c0..4e31750 100644 --- a/source/jisx0208.h +++ b/source/jisx0208.h @@ -1,3 +1,10 @@ +/* $Id$ + +This file is part of libmspstrings +Copyright © 2006-2007 Mikko Rasa +Distributed under the LGPL +*/ + #ifndef MSP_STRINGS_JISX0208_H_ #define MSP_STRINGS_JISX0208_H_ diff --git a/source/latin1.cpp b/source/latin1.cpp index 319429f..fcff15f 100644 --- a/source/latin1.cpp +++ b/source/latin1.cpp @@ -1,3 +1,10 @@ +/* $Id$ + +This file is part of libmspstrings +Copyright © 2006-2007 Mikko Rasa +Distributed under the LGPL +*/ + #include "latin1.h" using namespace std; diff --git a/source/latin1.h b/source/latin1.h index 12d880c..1dc52e3 100644 --- a/source/latin1.h +++ b/source/latin1.h @@ -1,3 +1,10 @@ +/* $Id$ + +This file is part of libmspstrings +Copyright © 2006-2007 Mikko Rasa +Distributed under the LGPL +*/ + #ifndef MSP_STRINGS_LATIN1_H_ #define MSP_STRINGS_LATIN1_H_ diff --git a/source/lexicalcast.h b/source/lexicalcast.h index b1e9db8..776eaab 100644 --- a/source/lexicalcast.h +++ b/source/lexicalcast.h @@ -1,3 +1,10 @@ +/* $Id$ + +This file is part of libmspstrings +Copyright © 2006-2007 Mikko Rasa +Distributed under the LGPL +*/ + #ifndef MSP_STRINGS_LEXICALCAST_H_ #define MSP_STRINGS_LEXICALCAST_H_ diff --git a/source/utf8.cpp b/source/utf8.cpp index 030406d..ce3b984 100644 --- a/source/utf8.cpp +++ b/source/utf8.cpp @@ -1,3 +1,10 @@ +/* $Id$ + +This file is part of libmspstrings +Copyright © 2006-2007 Mikko Rasa +Distributed under the LGPL +*/ + #include "utf8.h" using namespace std; diff --git a/source/utf8.h b/source/utf8.h index 40b4fb8..94569ee 100644 --- a/source/utf8.h +++ b/source/utf8.h @@ -1,3 +1,10 @@ +/* $Id$ + +This file is part of libmspstrings +Copyright © 2006-2007 Mikko Rasa +Distributed under the LGPL +*/ + #ifndef MSP_STRINGS_UTF8_H_ #define MSP_STRINGS_UTF8_H_ diff --git a/source/utils.cpp b/source/utils.cpp index 0ed3fc1..1feb086 100644 --- a/source/utils.cpp +++ b/source/utils.cpp @@ -1,3 +1,10 @@ +/* $Id$ + +This file is part of libmspstrings +Copyright © 2006-2007 Mikko Rasa +Distributed under the LGPL +*/ + #include #include "utils.h" diff --git a/source/utils.h b/source/utils.h index 1823f66..39b330b 100644 --- a/source/utils.h +++ b/source/utils.h @@ -1,3 +1,10 @@ +/* $Id$ + +This file is part of libmspstrings +Copyright © 2006-2007 Mikko Rasa +Distributed under the LGPL +*/ + #ifndef MSP_STRINGS_UTILS_H_ #define MSP_STRINGS_UTILS_H_