fplot 1.7.1
A Fortran library providing a convenient interface for plotting with Gnuplot.
Loading...
Searching...
No Matches
fplot_windows_terminal.f90
1! fplot_windows_terminal.f90
2
3submodule(fplot_core) fplot_windows_terminal
4contains
5
6 module function wt_get_term_string(this) result(x)
7 class(windows_terminal), intent(in) :: this
8 character(len = :), allocatable :: x
9 integer(int32) :: n
10 n = len_trim(this%m_id)
11 allocate(character(len = n) :: x)
12 x = this%m_id
13 end function
14
15end submodule
fplot_core