-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #39 from sourceryinstitute/smart-pointers
More clear, descriptive, and safe nomenclature
- Loading branch information
Showing
17 changed files
with
265 additions
and
245 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
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,12 @@ | ||
Classes | ||
------- | ||
|
||
The Unified Modeling Language (UML) class diagram below depicts the classes | ||
in the Smart-Pointer library. Non-abstract user-defined derived types that | ||
extend `sp_smart_pointer_t` inherit an obligation to define the `free` deferred | ||
binding according to the `free_interface` abstract interface defined in | ||
`sp_resource_m`. The user-defined `free` subroutine must free the associated | ||
resource, which usually means deallocating the associated memory. | ||
|
||
![class_diagram](https://user-images.githubusercontent.com/13108868/165135689-4d2e85fe-6946-472f-a154-aaabebf6d4f5.png) | ||
|
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
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.