Nigel
dea8ab7d71
Added new entries to .gitignore Moved away from source directory as central spot for all source code
23 lines
232 B
C++
23 lines
232 B
C++
//
|
|
// Created by nigel on 19/02/23.
|
|
//
|
|
#pragma once
|
|
#include <stddef.h>
|
|
#include "StringView.h"
|
|
|
|
|
|
class Path{
|
|
public:
|
|
explicit Path(String path);
|
|
|
|
StringView getbasename();
|
|
|
|
char* str();
|
|
|
|
private:
|
|
String path;
|
|
|
|
};
|
|
|
|
|