diff options
author | Mike Buland <eichlan@xagasoft.com> | 2012-11-15 23:37:46 +0000 |
---|---|---|
committer | Mike Buland <eichlan@xagasoft.com> | 2012-11-15 23:37:46 +0000 |
commit | 47dda29badd2112fbe256e5b0cb84d5b2fa590f1 (patch) | |
tree | 324184a97dece7ae6feafcba0c2190dcc86ffe05 /cs-dotnet/src | |
parent | dab882836e140401a452eafe890e36760a393b9b (diff) | |
download | libgats-47dda29badd2112fbe256e5b0cb84d5b2fa590f1.tar.gz libgats-47dda29badd2112fbe256e5b0cb84d5b2fa590f1.tar.bz2 libgats-47dda29badd2112fbe256e5b0cb84d5b2fa590f1.tar.xz libgats-47dda29badd2112fbe256e5b0cb84d5b2fa590f1.zip |
Added license notice to C# code.
Diffstat (limited to '')
-rw-r--r-- | cs-dotnet/src/gatsboolean.cs | 7 | ||||
-rw-r--r-- | cs-dotnet/src/gatsdictionary.cs | 7 | ||||
-rw-r--r-- | cs-dotnet/src/gatsexception.cs | 7 | ||||
-rw-r--r-- | cs-dotnet/src/gatsfloat.cs | 7 | ||||
-rw-r--r-- | cs-dotnet/src/gatsinteger.cs | 7 | ||||
-rw-r--r-- | cs-dotnet/src/gatslist.cs | 7 | ||||
-rw-r--r-- | cs-dotnet/src/gatsnull.cs | 7 | ||||
-rw-r--r-- | cs-dotnet/src/gatsobject.cs | 7 | ||||
-rw-r--r-- | cs-dotnet/src/gatsstream.cs | 7 | ||||
-rw-r--r-- | cs-dotnet/src/gatsstring.cs | 7 | ||||
-rw-r--r-- | cs-dotnet/src/tests/dictionary.cs | 7 | ||||
-rw-r--r-- | cs-dotnet/src/tests/floats.cs | 7 | ||||
-rw-r--r-- | cs-dotnet/src/tests/ints.cs | 7 | ||||
-rw-r--r-- | cs-dotnet/src/tests/lists.cs | 7 | ||||
-rw-r--r-- | cs-dotnet/src/tests/packet.cs | 7 |
15 files changed, 105 insertions, 0 deletions
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 @@ | |||
1 | /* | ||
2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. | ||
3 | * | ||
4 | * This file is part of the libgats library and is released under the | ||
5 | * terms of the license contained in the file LICENSE. | ||
6 | */ | ||
7 | |||
1 | using System.IO; | 8 | using System.IO; |
2 | 9 | ||
3 | namespace Com.Xagasoft.Gats | 10 | 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 @@ | |||
1 | /* | ||
2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. | ||
3 | * | ||
4 | * This file is part of the libgats library and is released under the | ||
5 | * terms of the license contained in the file LICENSE. | ||
6 | */ | ||
7 | |||
1 | using System.Text; | 8 | using System.Text; |
2 | using System.IO; | 9 | using System.IO; |
3 | using System.Linq; | 10 | 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 @@ | |||
1 | /* | ||
2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. | ||
3 | * | ||
4 | * This file is part of the libgats library and is released under the | ||
5 | * terms of the license contained in the file LICENSE. | ||
6 | */ | ||
7 | |||
1 | using System; | 8 | using System; |
2 | 9 | ||
3 | namespace Com.Xagasoft.Gats | 10 | 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 @@ | |||
1 | /* | ||
2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. | ||
3 | * | ||
4 | * This file is part of the libgats library and is released under the | ||
5 | * terms of the license contained in the file LICENSE. | ||
6 | */ | ||
7 | |||
1 | using System.IO; | 8 | using System.IO; |
2 | using System; | 9 | using System; |
3 | 10 | ||
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 @@ | |||
1 | /* | ||
2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. | ||
3 | * | ||
4 | * This file is part of the libgats library and is released under the | ||
5 | * terms of the license contained in the file LICENSE. | ||
6 | */ | ||
7 | |||
1 | using System.IO; | 8 | using System.IO; |
2 | 9 | ||
3 | namespace Com.Xagasoft.Gats | 10 | 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 @@ | |||
1 | /* | ||
2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. | ||
3 | * | ||
4 | * This file is part of the libgats library and is released under the | ||
5 | * terms of the license contained in the file LICENSE. | ||
6 | */ | ||
7 | |||
1 | using System; | 8 | using System; |
2 | using System.IO; | 9 | using System.IO; |
3 | using System.Text; | 10 | 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 @@ | |||
1 | /* | ||
2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. | ||
3 | * | ||
4 | * This file is part of the libgats library and is released under the | ||
5 | * terms of the license contained in the file LICENSE. | ||
6 | */ | ||
7 | |||
1 | using System.IO; | 8 | using System.IO; |
2 | 9 | ||
3 | namespace Com.Xagasoft.Gats | 10 | 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 @@ | |||
1 | /* | ||
2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. | ||
3 | * | ||
4 | * This file is part of the libgats library and is released under the | ||
5 | * terms of the license contained in the file LICENSE. | ||
6 | */ | ||
7 | |||
1 | using System.IO; | 8 | using System.IO; |
2 | 9 | ||
3 | namespace Com.Xagasoft.Gats | 10 | 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 @@ | |||
1 | /* | ||
2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. | ||
3 | * | ||
4 | * This file is part of the libgats library and is released under the | ||
5 | * terms of the license contained in the file LICENSE. | ||
6 | */ | ||
7 | |||
1 | using System.IO; | 8 | using System.IO; |
2 | using System.Net; | 9 | using System.Net; |
3 | using System; | 10 | 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 @@ | |||
1 | /* | ||
2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. | ||
3 | * | ||
4 | * This file is part of the libgats library and is released under the | ||
5 | * terms of the license contained in the file LICENSE. | ||
6 | */ | ||
7 | |||
1 | using System.IO; | 8 | using System.IO; |
2 | 9 | ||
3 | namespace Com.Xagasoft.Gats | 10 | 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 @@ | |||
1 | /* | ||
2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. | ||
3 | * | ||
4 | * This file is part of the libgats library and is released under the | ||
5 | * terms of the license contained in the file LICENSE. | ||
6 | */ | ||
7 | |||
1 | using System; | 8 | using System; |
2 | using System.IO; | 9 | using System.IO; |
3 | using Com.Xagasoft.Gats; | 10 | 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 @@ | |||
1 | /* | ||
2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. | ||
3 | * | ||
4 | * This file is part of the libgats library and is released under the | ||
5 | * terms of the license contained in the file LICENSE. | ||
6 | */ | ||
7 | |||
1 | using System; | 8 | using System; |
2 | using System.IO; | 9 | using System.IO; |
3 | using Com.Xagasoft.Gats; | 10 | 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 @@ | |||
1 | /* | ||
2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. | ||
3 | * | ||
4 | * This file is part of the libgats library and is released under the | ||
5 | * terms of the license contained in the file LICENSE. | ||
6 | */ | ||
7 | |||
1 | using System; | 8 | using System; |
2 | using System.Globalization; | 9 | using System.Globalization; |
3 | using System.IO; | 10 | 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 @@ | |||
1 | /* | ||
2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. | ||
3 | * | ||
4 | * This file is part of the libgats library and is released under the | ||
5 | * terms of the license contained in the file LICENSE. | ||
6 | */ | ||
7 | |||
1 | using System; | 8 | using System; |
2 | using System.IO; | 9 | using System.IO; |
3 | using Com.Xagasoft.Gats; | 10 | 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 @@ | |||
1 | /* | ||
2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. | ||
3 | * | ||
4 | * This file is part of the libgats library and is released under the | ||
5 | * terms of the license contained in the file LICENSE. | ||
6 | */ | ||
7 | |||
1 | using System; | 8 | using System; |
2 | using System.IO; | 9 | using System.IO; |
3 | using Com.Xagasoft.Gats; | 10 | using Com.Xagasoft.Gats; |