11
12
13
14
15
16
17
18
20 use gtool_history_internal,
only:
default
21 use dc_trace, only: beginsub, endsub, dbgmessage
23 implicit none
24 type(GT_HISTORY_AXIS),intent(inout) :: axis
25 character(len = *), parameter:: subname = "HistoryAxisClear1"
26 call beginsub(subname)
27 axis % name = ""
28 axis % length = 0
29 axis % longname = ""
30 axis % units = ""
31 axis % xtype = ""
32 if (associated(axis % attrs)) then
33 deallocate(axis % attrs)
34 end if
35 call endsub(subname)
integer, parameter, public token
単語やキーワードを保持する文字型変数の種別型パラメタ
integer, parameter, public dp
倍精度実数型変数
integer, parameter, public string
文字列を保持する 文字型変数の種別型パラメタ
type(gt_history), target, save default