add LICENSE and some annotation

This commit is contained in:
Liu Ming
2015-06-16 10:37:11 +08:00
parent d0179503de
commit 708f1d8f15
3 changed files with 206 additions and 2 deletions

View File

@@ -15,6 +15,7 @@ type boundsheet struct {
Name byte
}
//WorkSheet in one WorkBook
type WorkSheet struct {
bs *boundsheet
wb *WorkBook
@@ -23,7 +24,7 @@ type WorkSheet struct {
MaxRow uint16
}
func (w *WorkSheet) Parse(buf io.ReadSeeker) {
func (w *WorkSheet) parse(buf io.ReadSeeker) {
w.Rows = make(map[uint16]*Row)
bof := new(BOF)
var bof_pre *BOF