This commit is contained in:
Liu Ming
2016-09-30 11:46:51 +08:00
parent 76d16d4682
commit cc2ab32c3f
3 changed files with 8 additions and 6 deletions

4
row.go
View File

@@ -1,6 +1,6 @@
package xls
type RowInfo struct {
type rowInfo struct {
Index uint16
Fcell uint16
Lcell uint16
@@ -11,6 +11,6 @@ type RowInfo struct {
}
type Row struct {
info *RowInfo
info *rowInfo
Cols map[uint16]contentHandler
}