hstnmlinfodefinemode.f90
Go to the documentation of this file.
1 != GTHST_NMLINFO 型の変数の定義モードチェック
2 != Checker of define mode of "GTHST_NMLINFO"
3 !
4 ! Authors:: Yasuhiro MORIKAWA
5 ! Version:: $Id: hstnmlinfodefinemode.f90,v 1.1 2009-05-11 15:15:15 morikawa Exp $
6 ! Tag Name:: $Name: $
7 ! Copyright:: Copyright (C) GFD Dennou Club, 2007-2009. All rights reserved.
8 ! License:: See COPYRIGHT[link:../../../COPYRIGHT]
9 !
10  logical function hstnmlinfodefinemode( gthstnml ) result(result)
11  !
12  ! *gthstnml* が定義モードであれば .true. が,
13  ! 定義モードでなければ .false. が返ります.
14  !
15  ! If *gthstnml* is define mode, .true. is returned.
16  ! If *gthstnml* is not define mode, .false. is returned.
17  !
19  implicit none
20  type(gthst_nmlinfo), intent(in):: gthstnml
21  continue
22  result = gthstnml % define_mode
23  end function hstnmlinfodefinemode
logical function hstnmlinfodefinemode(gthstnml)