-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add WrapperFactoryListSingleton and the root of the hierarchy.
Test modified acording to this changes
- Loading branch information
1 parent
5ac62fc
commit 03bf2bd
Showing
13 changed files
with
289 additions
and
208 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
module FPL | ||
|
||
USE IR_Precision, only: I4P | ||
USE ParameterListEntryContainer | ||
USE WrapperFactoryListSingleton | ||
|
||
public :: ParameterListEntryContainer_t | ||
|
||
contains | ||
|
||
subroutine FPL_Init() | ||
!----------------------------------------------------------------- | ||
!< Initialize FPL | ||
!----------------------------------------------------------------- | ||
call TheWrapperFactoryList_Init() | ||
end subroutine FPL_Init | ||
|
||
|
||
subroutine FPL_Finalize() | ||
!----------------------------------------------------------------- | ||
!< Finalize FPL | ||
!----------------------------------------------------------------- | ||
call TheWrapperFactoryList%Free() | ||
end subroutine FPL_Finalize | ||
|
||
end module FPL |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.