Skip to content

Files

Latest commit

 

History

History

C++

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 

MET-CS665 Class Repository

Code Examples about Design Patterns

In this Repository we collect example design patterns in Java and C++.

  • Directory C++/ includes C++ examples

C++ Examples

We use CMake to build C++ code.

  • Use Smart pointer in C++
  • Use C++14
  • Use one of the compiler LLvm - clang, 'Gnu Compiler Collection' gcc or 'Gnu C Compiler' g++, and enable warning flags while compiling your code
  • Check Memory Leaks using valgrind
valgrind --tool=memcheck <your_app> <your_apps_params>