TABLE OF CONTENTS


::pwtk::report_

DESCRIPTION

The implementation of the 'report' command, implemented as a namespace ensemble.

SOURCE

namespace eval ::pwtk::report_ {
    namespace export structure exceptions programs plugins commands exported cmd
    namespace ensemble create -prefixes true

    proc structure {args} {
        return [::pwtk::input_structure_ {*}$args]
    }
    proc exceptions {} {
        return [::pwtk::input_exceptions_]
    }
    proc programs {} {
        return [::pwtk::supported_programs_]
    }
    proc plugins {} {
        return [::pwtk::supported_plugins_]
    }
    proc commands {pattern} {
        return [::pwtk::commands_ $pattern]
    }
    proc exported {pattern} {
        return [::pwtk::commands_ $pattern 1]
    }
    proc cmd {cmd} {
        return [::pwtk::cmd_ $cmd]
    }
}