From 0c485961307de93583c7bcfeecf42d8d53ab021f Mon Sep 17 00:00:00 2001 From: TinyAtoms Date: Mon, 20 May 2019 20:27:47 -0300 Subject: [PATCH] fixed dev guidelines --- Development Guidelines.md | 15 +++++++++++---- README.md | 2 +- 2 files changed, 12 insertions(+), 5 deletions(-) diff --git a/Development Guidelines.md b/Development Guidelines.md index 509a111..31dcdc0 100644 --- a/Development Guidelines.md +++ b/Development Guidelines.md @@ -2,18 +2,25 @@ 2.Clearly declare "private" inside of class. For example: -use class item{ +use +```c++ +class item{ private: int price; public: getPrice(); } +``` -instead of class item{ - int price +instead of class + +```c++ +class item{ + int price; public: - getprice(); + getPrice(); } +``` 3.Declare inheritance type(public, private, protected) when using inheritance. diff --git a/README.md b/README.md index fe05670..7b0d146 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,3 @@ # Shoppe-Manne -Basic shop management system written in \ No newline at end of file +Basic shop management system written in c++ \ No newline at end of file