diff options
| author | Amlal El Mahrouss <amlal.elmahrouss@icloud.com> | 2024-11-08 10:04:11 +0100 |
|---|---|---|
| committer | Amlal El Mahrouss <amlal.elmahrouss@icloud.com> | 2024-11-08 10:04:11 +0100 |
| commit | eefcec312adeea33f6cc384ea13e64033bf1a9ee (patch) | |
| tree | 727f8f013819525ae024841f595e4dae9800cebf /dev/LibC++/filesystem.h | |
| parent | 3952f60677d24d0add44e07befdfe980ae0e25b8 (diff) | |
ADD: LibC++: Adding support for filesystem header.
REN: Linker64.cc: Rename to DynamicLinker64.cc
Diffstat (limited to 'dev/LibC++/filesystem.h')
| -rw-r--r-- | dev/LibC++/filesystem.h | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/dev/LibC++/filesystem.h b/dev/LibC++/filesystem.h new file mode 100644 index 0000000..5923bec --- /dev/null +++ b/dev/LibC++/filesystem.h @@ -0,0 +1,18 @@ +/* ------------------------------------------- + + Copyright (C) 2024, EL Mahrouss Logic, all rights reserved. + +------------------------------------------- */ + +#ifndef __TOOLCHAINKIT_FS_H__ +#define __TOOLCHAINKIT_FS_H__ + +namespace std +{ + class path; + class filesystem_error; + class directory_entry; + class directory_iterator; +} + +#endif // __TOOLCHAINKIT_FS_H__
\ No newline at end of file |
