gtool5 Fortran 90/95 Library 1.0.0-rc5
日本語
Loading...
Searching...
No Matches
gtdata_types.f90
Go to the documentation of this file.
1!> @file gtdata_types.f90
2!>
3!> @author Yasuhiro MORIKAWA, Eizi TOYODA
4!> @copyright Copyright (C) GFD Dennou Club, 2000-2026. All rights reserved. <br/>
5!> License is BSD-2-Clause. See [COPYRIGHT](@ref COPYRIGHT) in detail
6!>
7!> @en
8!> @brief Declaration of derived type of gtool variable "GT_VARIABLE"
9!>
10!> This module provides the GT_VARIABLE type which is the user handle
11!> for all gtool variable operations.
12!> @enden
13!>
14!> @ja
15!> @brief gtool 変数の構造型 "GT_VARIABLE" 宣言
16!>
17!> このモジュールは gtool 変数操作のためのユーザハンドルである
18!> GT_VARIABLE 型を提供します。
19!> @endja
20!>
21
22!>
23!> @en
24!> @brief GT_VARIABLE type definition module
25!>
26!> Provides the GT_VARIABLE derived type used as an opaque handle
27!> for gtool variable operations. The internal structure (mapid)
28!> should not be accessed directly by users.
29!> @enden
30!>
31!> @ja
32!> @brief GT_VARIABLE 型定義モジュール
33!>
34!> gtool 変数操作のための不透明ハンドルとして使用される
35!> GT_VARIABLE 派生型を提供します。内部構造 (mapid) は
36!> ユーザが直接アクセスすべきではありません。
37!> @endja
38!>
40
41 use dc_types, only: string
42 implicit none
43 private
44 public:: gt_variable
45
47 integer:: mapid = -1
48 end type gt_variable
49
50end module
Provides kind type parameter values.
Definition dc_types.f90:55
integer, parameter, public string
Character length for string
Definition dc_types.f90:137