openxml/openxml-pptx

View on GitHub
lib/openxml/pptx/properties/slide_list.rb

Summary

Maintainability
A
0 mins
Test Coverage
require "openxml/pptx/properties/slide_reference"

module OpenXml
  module Pptx
    module Properties
      class SlideList < OpenXml::Properties::ContainerProperty
        namespace :p
        tag :sldLst
        child_class :slide_reference

      end
    end
  end
end