Skip to content

Commit

Permalink
update source file banners
Browse files Browse the repository at this point in the history
  • Loading branch information
xieguigang committed Jan 28, 2021
1 parent da19c9d commit 485242a
Show file tree
Hide file tree
Showing 75 changed files with 1,553 additions and 1,069 deletions.
49 changes: 47 additions & 2 deletions Data/BinaryData/DataStorage/netCDF/Components/Dimension.vb
Original file line number Diff line number Diff line change
@@ -1,4 +1,49 @@
Imports System.Xml.Serialization
#Region "Microsoft.VisualBasic::ecb9bed2cc6c856e7a0e5d62f3e8708c, Data\BinaryData\DataStorage\netCDF\Components\Dimension.vb"

' Author:
'
' asuka ([email protected])
' xie ([email protected])
' xieguigang ([email protected])
'
' Copyright (c) 2018 GPL3 Licensed
'
'
' GNU GENERAL PUBLIC LICENSE (GPL3)
'
'
' This program is free software: you can redistribute it and/or modify
' it under the terms of the GNU General Public License as published by
' the Free Software Foundation, either version 3 of the License, or
' (at your option) any later version.
'
' This program is distributed in the hope that it will be useful,
' but WITHOUT ANY WARRANTY; without even the implied warranty of
' MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
' GNU General Public License for more details.
'
' You should have received a copy of the GNU General Public License
' along with this program. If not, see <http://www.gnu.org/licenses/>.



' /********************************************************************************/

' Summaries:

' Structure Dimension
'
' Properties: [Boolean], [Byte], [Double], [Integer], [Long]
' [Short], Float, Text
'
' Function: ToString
'
'
' /********************************************************************************/

#End Region

Imports System.Xml.Serialization

Namespace netCDF.Components

Expand Down Expand Up @@ -72,4 +117,4 @@ Namespace netCDF.Components
End Property
End Structure

End Namespace
End Namespace
54 changes: 52 additions & 2 deletions Data/BinaryData/DataStorage/netCDF/Components/DimensionList.vb
Original file line number Diff line number Diff line change
@@ -1,4 +1,54 @@
Imports System.Xml.Serialization
#Region "Microsoft.VisualBasic::500d9e7de943d49ace05d35f59306aa1, Data\BinaryData\DataStorage\netCDF\Components\DimensionList.vb"

' Author:
'
' asuka ([email protected])
' xie ([email protected])
' xieguigang ([email protected])
'
' Copyright (c) 2018 GPL3 Licensed
'
'
' GNU GENERAL PUBLIC LICENSE (GPL3)
'
'
' This program is free software: you can redistribute it and/or modify
' it under the terms of the GNU General Public License as published by
' the Free Software Foundation, either version 3 of the License, or
' (at your option) any later version.
'
' This program is distributed in the hope that it will be useful,
' but WITHOUT ANY WARRANTY; without even the implied warranty of
' MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
' GNU General Public License for more details.
'
' You should have received a copy of the GNU General Public License
' along with this program. If not, see <http://www.gnu.org/licenses/>.



' /********************************************************************************/

' Summaries:

' Class DimensionList
'
' Properties: dimensions, HaveRecordDimension, recordId, recordName
'
' Function: ToString
'
' Class recordDimension
'
' Properties: id, length, name, recordStep
'
' Function: ToString
'
'
' /********************************************************************************/

#End Region

Imports System.Xml.Serialization

Namespace netCDF.Components

Expand Down Expand Up @@ -50,4 +100,4 @@ Namespace netCDF.Components
Return $"[{id}] {name} ({recordStep}x{length})"
End Function
End Class
End Namespace
End Namespace
49 changes: 47 additions & 2 deletions Data/BinaryData/DataStorage/netCDF/Components/attribute.vb
Original file line number Diff line number Diff line change
@@ -1,4 +1,49 @@
Imports System.Xml.Serialization
#Region "Microsoft.VisualBasic::3aa69b0f2b5c6e3f6a197160f08a385f, Data\BinaryData\DataStorage\netCDF\Components\attribute.vb"

' Author:
'
' asuka ([email protected])
' xie ([email protected])
' xieguigang ([email protected])
'
' Copyright (c) 2018 GPL3 Licensed
'
'
' GNU GENERAL PUBLIC LICENSE (GPL3)
'
'
' This program is free software: you can redistribute it and/or modify
' it under the terms of the GNU General Public License as published by
' the Free Software Foundation, either version 3 of the License, or
' (at your option) any later version.
'
' This program is distributed in the hope that it will be useful,
' but WITHOUT ANY WARRANTY; without even the implied warranty of
' MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
' GNU General Public License for more details.
'
' You should have received a copy of the GNU General Public License
' along with this program. If not, see <http://www.gnu.org/licenses/>.



' /********************************************************************************/

' Summaries:

' Class attribute
'
' Properties: name, type, value
'
' Constructor: (+2 Overloads) Sub New
' Function: getBytes, getObjectValue, ToString
'
'
' /********************************************************************************/

#End Region

Imports System.Xml.Serialization
Imports Microsoft.VisualBasic.Net.Http
Imports Microsoft.VisualBasic.Text

Expand Down Expand Up @@ -78,4 +123,4 @@ Namespace netCDF.Components
End Function
End Class

End Namespace
End Namespace
28 changes: 1 addition & 27 deletions Data/BinaryData/DataStorage/netCDF/Components/variable.vb
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#Region "Microsoft.VisualBasic::243b73db73781c629a1dd77c7b8791bc, Data\BinaryData\DataStorage\netCDF\Components\Components.vb"
#Region "Microsoft.VisualBasic::4b2f9a103a8552596be298d909b00677, Data\BinaryData\DataStorage\netCDF\Components\variable.vb"

' Author:
'
Expand Down Expand Up @@ -31,32 +31,6 @@

' Summaries:

' Structure Dimension
'
' Properties: [Boolean], [Byte], [Double], [Integer], [Long]
' [Short], Float, Text
'
' Function: ToString
'
' Class DimensionList
'
' Properties: dimensions, HaveRecordDimension, recordId, recordName
'
' Function: ToString
'
' Class recordDimension
'
' Properties: id, length, name, recordStep
'
' Function: ToString
'
' Class attribute
'
' Properties: name, type, value
'
' Constructor: (+2 Overloads) Sub New
' Function: getBytes, getObjectValue, ToString
'
' Class variable
'
' Properties: attributes, dimensions, name, offset, record
Expand Down
86 changes: 43 additions & 43 deletions Data/BinaryData/msgpack/Serialization/NilImplication.vb
Original file line number Diff line number Diff line change
@@ -1,46 +1,46 @@
#Region "Microsoft.VisualBasic::6ccf763dbd453864ec8eaa9dc0ee3343, Data\BinaryData\msgpack\Serialization\NilImplication.vb"

' Author:
'
' asuka ([email protected])
' xie ([email protected])
' xieguigang ([email protected])
'
' Copyright (c) 2018 GPL3 Licensed
'
'
' GNU GENERAL PUBLIC LICENSE (GPL3)
'
'
' This program is free software: you can redistribute it and/or modify
' it under the terms of the GNU General Public License as published by
' the Free Software Foundation, either version 3 of the License, or
' (at your option) any later version.
'
' This program is distributed in the hope that it will be useful,
' but WITHOUT ANY WARRANTY; without even the implied warranty of
' MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
' GNU General Public License for more details.
'
' You should have received a copy of the GNU General Public License
' along with this program. If not, see <http://www.gnu.org/licenses/>.



' /********************************************************************************/

' Summaries:

' Enum NilImplication
'
' MemberDefault, Null, Prohibit
'
'
'
'
'
'
' /********************************************************************************/
#Region "Microsoft.VisualBasic::2c729f401db0ec466a469c801a5dd26c, Data\BinaryData\msgpack\Serialization\NilImplication.vb"

' Author:
'
' asuka ([email protected])
' xie ([email protected])
' xieguigang ([email protected])
'
' Copyright (c) 2018 GPL3 Licensed
'
'
' GNU GENERAL PUBLIC LICENSE (GPL3)
'
'
' This program is free software: you can redistribute it and/or modify
' it under the terms of the GNU General Public License as published by
' the Free Software Foundation, either version 3 of the License, or
' (at your option) any later version.
'
' This program is distributed in the hope that it will be useful,
' but WITHOUT ANY WARRANTY; without even the implied warranty of
' MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
' GNU General Public License for more details.
'
' You should have received a copy of the GNU General Public License
' along with this program. If not, see <http://www.gnu.org/licenses/>.



' /********************************************************************************/

' Summaries:

' Enum NilImplication
'
' MemberDefault, Null, Prohibit
'
'
'
'
'
'
' /********************************************************************************/

#End Region

Expand Down
4 changes: 2 additions & 2 deletions Data/DataFrame/IO/DataFrame/DataFrame.vb
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#Region "Microsoft.VisualBasic::7fc3927fa4a2eb573fb9115979245c5a, Data\DataFrame\IO\DataFrame\DataFrame.vb"
#Region "Microsoft.VisualBasic::56caf728bb2d5dc2ce28340bd4560d86, Data\DataFrame\IO\DataFrame\DataFrame.vb"

' Author:
'
Expand Down Expand Up @@ -36,7 +36,7 @@
' Properties: Depth, FieldCount, Headers, HeadTitles, IDataRecord_Item
' IsClosed, Item, RecordsAffected, SchemaOridinal
'
' Constructor: (+2 Overloads) Sub New
' Constructor: (+3 Overloads) Sub New
'
' Function: [Select], __createTableVector, AddAttribute, ColumnRows, CreateDataSource
' CreateObject, createObjectInternal, csv, EnumerateData, EnumerateRowObjects
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -631,9 +631,9 @@
<Project>{85e71b4b-9276-4ec8-aadc-c849205f1ea8}</Project>
<Name>Microsoft.VisualBasic.Imaging</Name>
</ProjectReference>
<ProjectReference Include="..\..\..\..\mime\text%25html\mime-htmls.vbproj">
<ProjectReference Include="..\..\..\..\mime\text%25html\MIME-htmls.vbproj">
<Project>{2dd4be80-ddc3-4767-94a7-10f1c3395716}</Project>
<Name>mime-htmls</Name>
<Name>MIME-htmls</Name>
</ProjectReference>
<ProjectReference Include="..\..\..\Visualization\Plots\Plots.vbproj">
<Project>{17f8e821-0a01-4975-9caa-ac95251226d5}</Project>
Expand Down
Loading

0 comments on commit 485242a

Please sign in to comment.