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