Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

31 lines
1.3 KiB

  1. #
  2. # PPM::XML::PPMConfig
  3. #
  4. # Definition of the PPMConfig file format; configuration options for the Perl
  5. # Package Manager.
  6. #
  7. ###############################################################################
  8. $PPM::XML::RepositorySummary::revision = '$Id: RepositorySummary.pm,v 1.1.1.1 2000/01/26 17:39:19 graham Exp $';
  9. $PPM::XML::RepositorySummary::VERSION = '0.01';
  10. ###############################################################################
  11. # Import everything from PPM::XML::PPD into our own namespace.
  12. ###############################################################################
  13. package PPM::XML::RepositorySummary;
  14. use PPM::XML::PPD ':elements';
  15. ###############################################################################
  16. # RepositorySummary Element: Characters
  17. ###############################################################################
  18. package PPM::XML::RepositorySummary::Characters;
  19. @ISA = qw( PPM::XML::Element );
  20. ###############################################################################
  21. # RepositorySummary Element: REPOSITORYSUMMARY
  22. ###############################################################################
  23. package PPM::XML::RepositorySummary::REPOSITORYSUMMARY;
  24. @ISA = qw( PPM::XML::ValidatingElement );
  25. @okids = qw( SOFTPKG );
  26. __END__