Compare commits
2 Commits
cfc2428268
...
086ffceb86
Author | SHA1 | Date | |
---|---|---|---|
086ffceb86 | |||
c34d11703d |
@ -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)
|
||||
[![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)
|
||||
[![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=MacOs)](http://atria-soft.com/ci/atria-soft/ewol)
|
||||
|
@ -86,7 +86,7 @@ To be simple : (tab stop at the 'if' start)
|
||||
|
||||
- function:
|
||||
```{.cpp}
|
||||
void myFunction(void) {
|
||||
void myFunction() {
|
||||
actions ...;
|
||||
}
|
||||
```
|
||||
@ -95,8 +95,8 @@ To be simple : (tab stop at the 'if' start)
|
||||
```{.cpp}
|
||||
class MyClass {
|
||||
public:
|
||||
MyClass(void);
|
||||
~MyClass(void);
|
||||
MyClass();
|
||||
~MyClass();
|
||||
private:
|
||||
const char* getName(void);
|
||||
};
|
||||
@ -173,7 +173,7 @@ Naming {#ewol_coding_style_naming}
|
||||
- Fonction/Methods:
|
||||
Camel case with first letter in lower case.
|
||||
```{.cpp}
|
||||
void myExampleFontionName(void);
|
||||
void myExampleFontionName();
|
||||
```
|
||||
|
||||
- Variable:
|
||||
@ -226,7 +226,7 @@ for (int32_t iii=0; iii<xxx; ++iii) {
|
||||
Types {#ewol_coding_style_types}
|
||||
=====
|
||||
|
||||
Une stanndard Type :
|
||||
The standard Type :
|
||||
```{.cpp}
|
||||
bool
|
||||
int8_t / uint8_t
|
||||
|
Loading…
Reference in New Issue
Block a user