This file contains hidden or 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
| #ifndef LINKEDLIST_H_ | |
| #define LINKEDLIST_H_ | |
| template <class T> | |
| struct Node | |
| { | |
| T data; | |
| Node<T>* next; | |
| }; |
This file contains hidden or 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
| <?php | |
| namespace HttpRequest; | |
| /** | |
| * Author : Aaron Mkandawire | |
| * Date : August 8, 2021 | |
| * This is a cURL wrapper class | |
| */ | |
| class HttpRequest | |
| { |