Compare commits
No commits in common. "086ffceb86c1d355fcbbb34dae7c410ab82f58db" and "cfc2428268d407d193f65d996a6b81ff219ec3de" have entirely different histories.
086ffceb86
...
cfc2428268
@ -10,9 +10,6 @@ Release (master)
|
|||||||
[](http://atria-soft.com/ci/atria-soft/ewol)
|
[](http://atria-soft.com/ci/atria-soft/ewol)
|
||||||
[](http://atria-soft.com/ci/atria-soft/ewol)
|
[](http://atria-soft.com/ci/atria-soft/ewol)
|
||||||
[](http://atria-soft.com/ci/atria-soft/ewol)
|
[](http://atria-soft.com/ci/atria-soft/ewol)
|
||||||
[](https://github.com/atria-soft/ewol/releases/latest)
|
|
||||||
[](https://github.com/atria-soft/ewol/releases)
|
|
||||||
|
|
||||||
|
|
||||||
[](http://atria-soft.com/ci/atria-soft/ewol)
|
[](http://atria-soft.com/ci/atria-soft/ewol)
|
||||||
[](http://atria-soft.com/ci/atria-soft/ewol)
|
[](http://atria-soft.com/ci/atria-soft/ewol)
|
||||||
|
@ -86,7 +86,7 @@ To be simple : (tab stop at the 'if' start)
|
|||||||
|
|
||||||
- function:
|
- function:
|
||||||
```{.cpp}
|
```{.cpp}
|
||||||
void myFunction() {
|
void myFunction(void) {
|
||||||
actions ...;
|
actions ...;
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
@ -95,8 +95,8 @@ To be simple : (tab stop at the 'if' start)
|
|||||||
```{.cpp}
|
```{.cpp}
|
||||||
class MyClass {
|
class MyClass {
|
||||||
public:
|
public:
|
||||||
MyClass();
|
MyClass(void);
|
||||||
~MyClass();
|
~MyClass(void);
|
||||||
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 myExampleFontionName(void);
|
||||||
```
|
```
|
||||||
|
|
||||||
- Variable:
|
- Variable:
|
||||||
@ -226,7 +226,7 @@ for (int32_t iii=0; iii<xxx; ++iii) {
|
|||||||
Types {#ewol_coding_style_types}
|
Types {#ewol_coding_style_types}
|
||||||
=====
|
=====
|
||||||
|
|
||||||
The standard Type :
|
Une stanndard Type :
|
||||||
```{.cpp}
|
```{.cpp}
|
||||||
bool
|
bool
|
||||||
int8_t / uint8_t
|
int8_t / uint8_t
|
||||||
|
Loading…
x
Reference in New Issue
Block a user