Compare commits

...

2 Commits

Author SHA1 Message Date
086ffceb86
Update README.md 2018-01-25 09:58:47 +01:00
c34d11703d
remove (void) 2017-11-23 15:14:13 +01:00
2 changed files with 8 additions and 5 deletions

View File

@ -10,6 +10,9 @@ Release (master)
[![Coverage Status](http://atria-soft.com/ci/coverage/atria-soft/ewol.svg?branch=master)](http://atria-soft.com/ci/atria-soft/ewol) [![Coverage Status](http://atria-soft.com/ci/coverage/atria-soft/ewol.svg?branch=master)](http://atria-soft.com/ci/atria-soft/ewol)
[![Test Status](http://atria-soft.com/ci/test/atria-soft/ewol.svg?branch=master)](http://atria-soft.com/ci/atria-soft/ewol) [![Test Status](http://atria-soft.com/ci/test/atria-soft/ewol.svg?branch=master)](http://atria-soft.com/ci/atria-soft/ewol)
[![Warning Status](http://atria-soft.com/ci/warning/atria-soft/ewol.svg?branch=master)](http://atria-soft.com/ci/atria-soft/ewol) [![Warning Status](http://atria-soft.com/ci/warning/atria-soft/ewol.svg?branch=master)](http://atria-soft.com/ci/atria-soft/ewol)
[![github release](https://img.shields.io/github/release/atria-soft/ewol.svg?logo=github)](https://github.com/atria-soft/ewol/releases/latest)
[![github releases: all](https://img.shields.io/github/downloads/atria-soft/ewol/total.svg?logo=github&label=github)](https://github.com/atria-soft/ewol/releases)
[![Build Status](http://atria-soft.com/ci/build/atria-soft/ewol.svg?branch=master&tag=Linux)](http://atria-soft.com/ci/atria-soft/ewol) [![Build Status](http://atria-soft.com/ci/build/atria-soft/ewol.svg?branch=master&tag=Linux)](http://atria-soft.com/ci/atria-soft/ewol)
[![Build Status](http://atria-soft.com/ci/build/atria-soft/ewol.svg?branch=master&tag=MacOs)](http://atria-soft.com/ci/atria-soft/ewol) [![Build Status](http://atria-soft.com/ci/build/atria-soft/ewol.svg?branch=master&tag=MacOs)](http://atria-soft.com/ci/atria-soft/ewol)

View File

@ -86,7 +86,7 @@ To be simple : (tab stop at the 'if' start)
- function: - function:
```{.cpp} ```{.cpp}
void myFunction(void) { void myFunction() {
actions ...; actions ...;
} }
``` ```
@ -95,8 +95,8 @@ To be simple : (tab stop at the 'if' start)
```{.cpp} ```{.cpp}
class MyClass { class MyClass {
public: public:
MyClass(void); MyClass();
~MyClass(void); ~MyClass();
private: private:
const char* getName(void); const char* getName(void);
}; };
@ -173,7 +173,7 @@ Naming {#ewol_coding_style_naming}
- Fonction/Methods: - Fonction/Methods:
Camel case with first letter in lower case. Camel case with first letter in lower case.
```{.cpp} ```{.cpp}
void myExampleFontionName(void); void myExampleFontionName();
``` ```
- Variable: - Variable:
@ -226,7 +226,7 @@ for (int32_t iii=0; iii<xxx; ++iii) {
Types {#ewol_coding_style_types} Types {#ewol_coding_style_types}
===== =====
Une stanndard Type : The standard Type :
```{.cpp} ```{.cpp}
bool bool
int8_t / uint8_t int8_t / uint8_t