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