Skip to content

hardiksurana/Gang-of-Four

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

27 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

GANG OF FOUR PATTERNS

Build Status stability-wip licensebuttons by-sa

This repository contains implementations of GOF Patterns

Installation

This package requires:

  • g++

Tests

$ ./test.sh

How to contribute

To contibute follow the structure:

  • Create a folder with name of pattern.
  • Folder must contain makefile in it's folder.
  • Makefile must produce test as output.

Sample structure:

.
├── Iterator
│   ├── include
│   │   ├── carray.h
│   │   └── utils.h
│   ├── makefile
│   ├── obj
│   │   ├── carray.o
│   │   └── test.o
│   ├── src
│   │   └── carray.cpp
│   ├── test
│   └── test.cpp

This is to enable test.sh to execute with no errors for Travis checks.

License: Attribution-ShareAlike 4.0 International (CC BY-SA 4.0)

About

Gang of Four implementations for Design Patterns course

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C++ 77.1%
  • Makefile 20.6%
  • Shell 2.3%