2001年10月10日 豊田英司
あるファイルの中にある変数一覧を得るためには GTVarSearch サブルーチンをもちいます。
subroutine GTVarSearch(urlBase) character(len = *), intent(in):: urlBase end subroutine 一要素探索
チュートリアルの例を参照してください。
subroutine GTVarSearch(url, end) character(len = *), intent(out):: url logical, intent(out):: end end subroutine
もう見つからないときに end が真になります。チュートリアルの例を参照してください。
subroutine GTVarSync(var, stat) type(GT_VARIABLE), intent(inout), optional:: var integer, intent(out), optional:: stat end subroutine
subroutine Add_Member(var, url, link_name) type(GT_VARIABLE), intent(inout):: var type(VSTRING), intent(in):: url character(len = *), intent(in), optional:: link_name end subroutine
type(VSTRING) function GTDataTmpNam(file, base) type(VSTRING), intent(in), optional:: file, base end function