Octopus
share_directory.F90
Go to the documentation of this file.
1!! Copyright (C) 2018 X. Andrade
2!!
3!! This program is free software; you can redistribute it and/or modify
4!! it under the terms of the GNU General Public License as published by
5!! the Free Software Foundation; either version 2, or (at your option)
6!! any later version.
7!!
8!! This program is distributed in the hope that it will be useful,
9!! but WITHOUT ANY WARRANTY; without even the implied warranty of
10!! MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11!! GNU General Public License for more details.
12!!
13!! You should have received a copy of the GNU General Public License
14!! along with this program; if not, write to the Free Software
15!! Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
16!! 02110-1301, USA.
17!!
18
19#include "global.h"
20
22
23 implicit none
24
25 private
26 public :: &
28
29 interface
30
31 subroutine share_directory_set(dir)
32 implicit none
33
34 character(len=*), intent(in) :: dir
35 end subroutine share_directory_set
36
37 end interface
38
39end module share_directory_oct_m
40
41!! Local Variables:
42!! mode: f90
43!! coding: utf-8
44!! End: