[DEV] not-in-doc ==> not_in_doc and add parsing in c++
This commit is contained in:
parent
948e672eb1
commit
235847a1c6
@ -67,7 +67,7 @@
|
|||||||
</rule>
|
</rule>
|
||||||
<rule name="my common Define">
|
<rule name="my common Define">
|
||||||
<color>commonDefine</color>
|
<color>commonDefine</color>
|
||||||
<regex>\b(NULL|MAX|MIN|__(LINE|DATA|FILE|func|TIME|STDC)__)\b</regex>
|
<regex>\b(NULL|MAX|MIN|__(LINE|DATA|FILE|func|TIME|STDC|PRETTY_FUNCTION|FUNCTION)__)\b</regex>
|
||||||
</rule>
|
</rule>
|
||||||
<rule name="numeric constant">
|
<rule name="numeric constant">
|
||||||
<color>number</color>
|
<color>number</color>
|
||||||
|
@ -74,7 +74,7 @@
|
|||||||
</rule>
|
</rule>
|
||||||
<rule name="my common Define">
|
<rule name="my common Define">
|
||||||
<color>commonDefine</color>
|
<color>commonDefine</color>
|
||||||
<regex>\b(nullptr|__(LINE|DATA|FILE|func|TIME|STDC)__)\b</regex>
|
<regex>\b(nullptr|__(LINE|DATA|FILE|func|TIME|STDC|PRETTY_FUNCTION|FUNCTION)__)\b</regex>
|
||||||
</rule>
|
</rule>
|
||||||
<rule name="numeric constant">
|
<rule name="numeric constant">
|
||||||
<color>number</color>
|
<color>number</color>
|
||||||
|
@ -5,9 +5,7 @@
|
|||||||
*
|
*
|
||||||
* @license GPL v3 (see license file)
|
* @license GPL v3 (see license file)
|
||||||
*/
|
*/
|
||||||
|
#pragma once
|
||||||
#ifndef __APPL_DEBUG_H__
|
|
||||||
#define __APPL_DEBUG_H__
|
|
||||||
|
|
||||||
#include <elog/log.h>
|
#include <elog/log.h>
|
||||||
|
|
||||||
@ -39,4 +37,3 @@ namespace appl {
|
|||||||
} \
|
} \
|
||||||
} while (0)
|
} while (0)
|
||||||
|
|
||||||
#endif
|
|
||||||
|
@ -54,7 +54,7 @@ namespace ewol {
|
|||||||
namespace ewol {
|
namespace ewol {
|
||||||
#if 0
|
#if 0
|
||||||
/**
|
/**
|
||||||
* @not-in-doc
|
* @not_in_doc
|
||||||
*/
|
*/
|
||||||
#endif
|
#endif
|
||||||
class DrawProperty{
|
class DrawProperty{
|
||||||
@ -91,7 +91,7 @@ namespace ewol {
|
|||||||
std::ostream& operator <<(std::ostream& _os, const ewol::DrawProperty& _obj);
|
std::ostream& operator <<(std::ostream& _os, const ewol::DrawProperty& _obj);
|
||||||
/**
|
/**
|
||||||
* @brief Gravity of the widget property
|
* @brief Gravity of the widget property
|
||||||
* @not-in-doc
|
* @not_in_doc
|
||||||
*/
|
*/
|
||||||
enum gravity {
|
enum gravity {
|
||||||
gravityCenter=0x00, //!< gravity is in certer
|
gravityCenter=0x00, //!< gravity is in certer
|
||||||
@ -108,7 +108,7 @@ namespace ewol {
|
|||||||
std::string gravityToString(const enum ewol::gravity _obj);
|
std::string gravityToString(const enum ewol::gravity _obj);
|
||||||
enum ewol::gravity stringToGravity(const std::string& _obj);
|
enum ewol::gravity stringToGravity(const std::string& _obj);
|
||||||
/**
|
/**
|
||||||
* @not-in-doc
|
* @not_in_doc
|
||||||
*/
|
*/
|
||||||
class EventShortCut {
|
class EventShortCut {
|
||||||
public:
|
public:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user