Nigel
dea8ab7d71
Added new entries to .gitignore Moved away from source directory as central spot for all source code
15 lines
256 B
C++
15 lines
256 B
C++
//
|
|
// Created by nigel on 19/02/23.
|
|
//
|
|
#pragma once
|
|
#include "String.h"
|
|
|
|
class StringView : String {
|
|
public:
|
|
StringView(String string, unsigned int start, unsigned int end );
|
|
char* str ();
|
|
private:
|
|
unsigned int begin;
|
|
unsigned int end;
|
|
};
|