1!--------------------------------------------------------------------------------------------------!
2!   CP2K: A general program to perform molecular dynamics simulations                              !
3!   Copyright (C) 2000 - 2020  CP2K developers group                                               !
4!--------------------------------------------------------------------------------------------------!
5
6! **************************************************************************************************
7!> \brief represent a simple array based list of the given type
8!> \par History
9!>      08.2003 created [fawzi]
10!>      01.2017 ported to Fypp [Ole Schuett]
11!> \author Fawzi Mohamed
12! **************************************************************************************************
13MODULE molecule_kind_list_types
14   use molecule_kind_types, only: molecule_kind_type, deallocate_molecule_kind_set
15
16#include "../base/base_uses.f90"
17
18   IMPLICIT NONE
19   PRIVATE
20
21#:include "subsys_list.fypp"
22
23$:subsys_list_macro(name='molecule_kind')
24
25END MODULE molecule_kind_list_types
26