Design Pattern Examples
Overview of object-oriented design patterns
Composite_FileDirEntry.cs File Reference

The FileDirEntry base class, and the FileEntry and classes and the DirEntry classes as used in the Composite pattern. More...

Go to the source code of this file.

Classes

class  FileDirEntry
 Base class representing a File or Directory entry. More...
 
class  FileEntry
 Represents a File entry. More...
 
class  DirEntry
 Represents a Directory entry. More...
 

Namespaces

namespace  DesignPatternExamples_csharp
 The namespace containing all Design Pattern Examples implemented in C#.
 

Enumerations

enum  FileDirTypes { File , Directory }
 Represents the type of entries allowed in the hierarchy for the Composite design pattern example. More...
 

Detailed Description

The FileDirEntry base class, and the FileEntry and classes and the DirEntry classes as used in the Composite pattern.

Definition in file Composite_FileDirEntry.cs.