INTEGER FUNCTION GetNumObjectsInIDD()
! FUNCTION INFORMATION:
! AUTHOR Linda K. Lawrie
! DATE WRITTEN May 1998
! MODIFIED na
! RE-ENGINEERED na
! PURPOSE OF THIS SUBROUTINE:
! This subroutine returns the number of objects found in the IDD and
! can be used to allocate the array for determining the definitions.
! METHODOLOGY EMPLOYED:
! Essentially allows outside access to an internal variable of the InputProcessor.
! Used primarily by utility programs that use the InputProcessor outside of the
! "true" EnergyPlus code.
! REFERENCES:
! na
! USE STATEMENTS:
! na
IMPLICIT NONE ! Enforce explicit typing of all variables in this routine
! SUBROUTINE ARGUMENT DEFINITIONS:
! na
! SUBROUTINE PARAMETER DEFINITIONS:
! na
! INTERFACE BLOCK SPECIFICATIONS
! na
! DERIVED TYPE DEFINITIONS
! na
! SUBROUTINE LOCAL VARIABLE DECLARATIONS:
! na
GetNumObjectsInIDD=NumObjectDefs
RETURN
END FUNCTION GetNumObjectsInIDD