AddInclude will append a new filename into the section
(filename string)
| 46 | |
| 47 | // AddInclude will append a new filename into the section |
| 48 | func (section *Section) AddInclude(filename string) { |
| 49 | section.includes = append(section.includes, filename) |
| 50 | } |
| 51 | |
| 52 | // GetComments will return all the comments were defined for this Section |
| 53 | func (section *Section) GetComments() []string { |