From 47dda29badd2112fbe256e5b0cb84d5b2fa590f1 Mon Sep 17 00:00:00 2001 From: Mike Buland Date: Thu, 15 Nov 2012 23:37:46 +0000 Subject: Added license notice to C# code. --- cs-dotnet/default.bld | 7 +++++++ cs-dotnet/src/gatsboolean.cs | 7 +++++++ cs-dotnet/src/gatsdictionary.cs | 7 +++++++ cs-dotnet/src/gatsexception.cs | 7 +++++++ cs-dotnet/src/gatsfloat.cs | 7 +++++++ cs-dotnet/src/gatsinteger.cs | 7 +++++++ cs-dotnet/src/gatslist.cs | 7 +++++++ cs-dotnet/src/gatsnull.cs | 7 +++++++ cs-dotnet/src/gatsobject.cs | 7 +++++++ cs-dotnet/src/gatsstream.cs | 7 +++++++ cs-dotnet/src/gatsstring.cs | 7 +++++++ cs-dotnet/src/tests/dictionary.cs | 7 +++++++ cs-dotnet/src/tests/floats.cs | 7 +++++++ cs-dotnet/src/tests/ints.cs | 7 +++++++ cs-dotnet/src/tests/lists.cs | 7 +++++++ cs-dotnet/src/tests/packet.cs | 7 +++++++ 16 files changed, 112 insertions(+) diff --git a/cs-dotnet/default.bld b/cs-dotnet/default.bld index 4bc324e..d6f1909 100644 --- a/cs-dotnet/default.bld +++ b/cs-dotnet/default.bld @@ -1,3 +1,10 @@ +/* + * Copyright (C) 2007-2012 Xagasoft, All rights reserved. + * + * This file is part of the libgats library and is released under the + * terms of the license contained in the file LICENSE. + */ + target "libgats.dll" { diff --git a/cs-dotnet/src/gatsboolean.cs b/cs-dotnet/src/gatsboolean.cs index e7e07e6..11c8115 100644 --- a/cs-dotnet/src/gatsboolean.cs +++ b/cs-dotnet/src/gatsboolean.cs @@ -1,3 +1,10 @@ +/* + * Copyright (C) 2007-2012 Xagasoft, All rights reserved. + * + * This file is part of the libgats library and is released under the + * terms of the license contained in the file LICENSE. + */ + using System.IO; namespace Com.Xagasoft.Gats diff --git a/cs-dotnet/src/gatsdictionary.cs b/cs-dotnet/src/gatsdictionary.cs index 0122c3a..af7f72a 100644 --- a/cs-dotnet/src/gatsdictionary.cs +++ b/cs-dotnet/src/gatsdictionary.cs @@ -1,3 +1,10 @@ +/* + * Copyright (C) 2007-2012 Xagasoft, All rights reserved. + * + * This file is part of the libgats library and is released under the + * terms of the license contained in the file LICENSE. + */ + using System.Text; using System.IO; using System.Linq; diff --git a/cs-dotnet/src/gatsexception.cs b/cs-dotnet/src/gatsexception.cs index 2dc49eb..442a4ff 100644 --- a/cs-dotnet/src/gatsexception.cs +++ b/cs-dotnet/src/gatsexception.cs @@ -1,3 +1,10 @@ +/* + * Copyright (C) 2007-2012 Xagasoft, All rights reserved. + * + * This file is part of the libgats library and is released under the + * terms of the license contained in the file LICENSE. + */ + using System; namespace Com.Xagasoft.Gats diff --git a/cs-dotnet/src/gatsfloat.cs b/cs-dotnet/src/gatsfloat.cs index 7161975..4709097 100644 --- a/cs-dotnet/src/gatsfloat.cs +++ b/cs-dotnet/src/gatsfloat.cs @@ -1,3 +1,10 @@ +/* + * Copyright (C) 2007-2012 Xagasoft, All rights reserved. + * + * This file is part of the libgats library and is released under the + * terms of the license contained in the file LICENSE. + */ + using System.IO; using System; diff --git a/cs-dotnet/src/gatsinteger.cs b/cs-dotnet/src/gatsinteger.cs index 9a9abbe..268769b 100644 --- a/cs-dotnet/src/gatsinteger.cs +++ b/cs-dotnet/src/gatsinteger.cs @@ -1,3 +1,10 @@ +/* + * Copyright (C) 2007-2012 Xagasoft, All rights reserved. + * + * This file is part of the libgats library and is released under the + * terms of the license contained in the file LICENSE. + */ + using System.IO; namespace Com.Xagasoft.Gats diff --git a/cs-dotnet/src/gatslist.cs b/cs-dotnet/src/gatslist.cs index d111bac..7d57035 100644 --- a/cs-dotnet/src/gatslist.cs +++ b/cs-dotnet/src/gatslist.cs @@ -1,3 +1,10 @@ +/* + * Copyright (C) 2007-2012 Xagasoft, All rights reserved. + * + * This file is part of the libgats library and is released under the + * terms of the license contained in the file LICENSE. + */ + using System; using System.IO; using System.Text; diff --git a/cs-dotnet/src/gatsnull.cs b/cs-dotnet/src/gatsnull.cs index 353a30f..009676f 100644 --- a/cs-dotnet/src/gatsnull.cs +++ b/cs-dotnet/src/gatsnull.cs @@ -1,3 +1,10 @@ +/* + * Copyright (C) 2007-2012 Xagasoft, All rights reserved. + * + * This file is part of the libgats library and is released under the + * terms of the license contained in the file LICENSE. + */ + using System.IO; namespace Com.Xagasoft.Gats diff --git a/cs-dotnet/src/gatsobject.cs b/cs-dotnet/src/gatsobject.cs index 792db6a..7c92cff 100644 --- a/cs-dotnet/src/gatsobject.cs +++ b/cs-dotnet/src/gatsobject.cs @@ -1,3 +1,10 @@ +/* + * Copyright (C) 2007-2012 Xagasoft, All rights reserved. + * + * This file is part of the libgats library and is released under the + * terms of the license contained in the file LICENSE. + */ + using System.IO; namespace Com.Xagasoft.Gats diff --git a/cs-dotnet/src/gatsstream.cs b/cs-dotnet/src/gatsstream.cs index 0e85379..e1bba91 100644 --- a/cs-dotnet/src/gatsstream.cs +++ b/cs-dotnet/src/gatsstream.cs @@ -1,3 +1,10 @@ +/* + * Copyright (C) 2007-2012 Xagasoft, All rights reserved. + * + * This file is part of the libgats library and is released under the + * terms of the license contained in the file LICENSE. + */ + using System.IO; using System.Net; using System; diff --git a/cs-dotnet/src/gatsstring.cs b/cs-dotnet/src/gatsstring.cs index 47b63ed..3fa3b7e 100644 --- a/cs-dotnet/src/gatsstring.cs +++ b/cs-dotnet/src/gatsstring.cs @@ -1,3 +1,10 @@ +/* + * Copyright (C) 2007-2012 Xagasoft, All rights reserved. + * + * This file is part of the libgats library and is released under the + * terms of the license contained in the file LICENSE. + */ + using System.IO; namespace Com.Xagasoft.Gats diff --git a/cs-dotnet/src/tests/dictionary.cs b/cs-dotnet/src/tests/dictionary.cs index a22acad..b97cb7d 100644 --- a/cs-dotnet/src/tests/dictionary.cs +++ b/cs-dotnet/src/tests/dictionary.cs @@ -1,3 +1,10 @@ +/* + * Copyright (C) 2007-2012 Xagasoft, All rights reserved. + * + * This file is part of the libgats library and is released under the + * terms of the license contained in the file LICENSE. + */ + using System; using System.IO; using Com.Xagasoft.Gats; diff --git a/cs-dotnet/src/tests/floats.cs b/cs-dotnet/src/tests/floats.cs index b64402c..69b0909 100644 --- a/cs-dotnet/src/tests/floats.cs +++ b/cs-dotnet/src/tests/floats.cs @@ -1,3 +1,10 @@ +/* + * Copyright (C) 2007-2012 Xagasoft, All rights reserved. + * + * This file is part of the libgats library and is released under the + * terms of the license contained in the file LICENSE. + */ + using System; using System.IO; using Com.Xagasoft.Gats; diff --git a/cs-dotnet/src/tests/ints.cs b/cs-dotnet/src/tests/ints.cs index 766b667..680bda5 100644 --- a/cs-dotnet/src/tests/ints.cs +++ b/cs-dotnet/src/tests/ints.cs @@ -1,3 +1,10 @@ +/* + * Copyright (C) 2007-2012 Xagasoft, All rights reserved. + * + * This file is part of the libgats library and is released under the + * terms of the license contained in the file LICENSE. + */ + using System; using System.Globalization; using System.IO; diff --git a/cs-dotnet/src/tests/lists.cs b/cs-dotnet/src/tests/lists.cs index 09ad931..452699b 100644 --- a/cs-dotnet/src/tests/lists.cs +++ b/cs-dotnet/src/tests/lists.cs @@ -1,3 +1,10 @@ +/* + * Copyright (C) 2007-2012 Xagasoft, All rights reserved. + * + * This file is part of the libgats library and is released under the + * terms of the license contained in the file LICENSE. + */ + using System; using System.IO; using Com.Xagasoft.Gats; diff --git a/cs-dotnet/src/tests/packet.cs b/cs-dotnet/src/tests/packet.cs index a572505..1242347 100644 --- a/cs-dotnet/src/tests/packet.cs +++ b/cs-dotnet/src/tests/packet.cs @@ -1,3 +1,10 @@ +/* + * Copyright (C) 2007-2012 Xagasoft, All rights reserved. + * + * This file is part of the libgats library and is released under the + * terms of the license contained in the file LICENSE. + */ + using System; using System.IO; using Com.Xagasoft.Gats; -- cgit v1.2.3