This repository contains implementations of GOF Patterns
This package requires:
- g++
$ ./test.sh
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.