Added new entries to .gitignore Moved away from source directory as central spot for all source code
		
			
				
	
	
		
			14 lines
		
	
	
		
			248 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			248 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| //
 | |
| // Created by nigel on 19/02/23.
 | |
| //
 | |
| #include "StringView.h"
 | |
| 
 | |
| StringView::StringView(String string, unsigned int start, unsigned int end)
 | |
|         : String(string), begin(start), end(end)
 | |
| {
 | |
| 
 | |
| }
 | |
| 
 | |
| char* StringView::str(){
 | |
|    //TODO: Not implemented
 | |
| } |