21 lines
981 B
Go
Raw Normal View History

2017-08-28 20:56:18 -05:00
// Copyright 2017 Baliance. All rights reserved.
//
// DO NOT EDIT: generated by gooxml ECMA-376 generator
//
2017-08-28 20:56:18 -05:00
// Use of this source code is governed by the terms of the Affero GNU General
// Public License version 3.0 as published by the Free Software Foundation and
// appearing in the file LICENSE included in the packaging of this file. A
// commercial license can be purchased by contacting sales@baliance.com.
package elements
import "github.com/unidoc/unioffice"
2017-08-28 20:56:18 -05:00
// init registers constructor functions for dynamically creating elements based off the XML namespace and name
2017-08-28 20:56:18 -05:00
func init() {
gooxml.RegisterConstructor("http://purl.org/dc/elements/1.1/", "SimpleLiteral", NewSimpleLiteral)
gooxml.RegisterConstructor("http://purl.org/dc/elements/1.1/", "elementContainer", NewElementContainer)
2017-08-29 16:55:03 -05:00
gooxml.RegisterConstructor("http://purl.org/dc/elements/1.1/", "any", NewAny)
2017-08-28 20:56:18 -05:00
gooxml.RegisterConstructor("http://purl.org/dc/elements/1.1/", "elementsGroup", NewElementsGroup)
}