#' ISOAbstractContentInformation
#'
#' @docType class
#' @importFrom R6 R6Class
#' @export
#' @keywords ISO abstract content information
#' @return Object of \code{\link{R6Class}} for modelling an ISO abstract content information
#' @format \code{\link{R6Class}} object.
#'
#' @references
#' - ISO 19115-3 \url{https://schemas.isotc211.org/19115/-3/mcc/1.0/mcc/#element_Abstract_ContentInformation}
#'
#' @author Emmanuel Blondel <emmanuel.blondel1@@gmail.com>
#'
ISOAbstractContentInformation <- R6Class("ISOAbstractContentInformation",
inherit = ISOAbstractObject,
private = list(
xmlElement = "Abstract_ContentInformation",
xmlNamespacePrefix = list(
"19115-3" = "MCC"
)
),
public = list(
#'@description Initializes object
#'@param xml object of class \link{XMLInternalNode-class}
initialize = function(xml = NULL){
super$initialize(xml = xml)
}
)
)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.