Design Pattern Examples
Overview of object-oriented design patterns
c/Composite_FileAccess.h
Go to the documentation of this file.
1
5
6#pragma once
7#ifndef __COMPOSITE_FILEACCESS_H__
8#define __COMPOSITE_FILEACCESS_H__
9
11
23
24#endif // __COMPOSITE_FILEACCESS_H__
25
FileDirEntry * Composite_FileAccess_GetEntry(const char *path)
Return a FileDirEntry object representing the specified file "path" from an internal list of data ent...
Implementation of the FileDirEntry, FileEntry, and DirEntry classes used in the Composite Pattern.
Structure representing a File (FileEntry) or Directory (DirEntry) entry. This is included as the firs...