forked from organicmaps/organicmaps
Updated CPP Coding Style - typedefs should be like TNewType, not like new_type_t
This commit is contained in:
parent
ba84ce6754
commit
f26b624d87
1 changed files with 6 additions and 1 deletions
|
@ -1,3 +1,5 @@
|
|||
We write code without warnings!
|
||||
|
||||
In general, Google's coding standard http://google-styleguide.googlecode.com/svn/trunk/cppguide.xml is used and we strongly encourage to read it.
|
||||
|
||||
Below are our specific exceptions to the Google's coding standard:
|
||||
|
@ -8,7 +10,7 @@ Below are our specific exceptions to the Google's coding standard:
|
|||
- We don't include system, std and boost headers directly, use #include "../std/<wrapper.hpp>"
|
||||
- We ARE using C++ exceptions
|
||||
- We don't support C++11 yet
|
||||
- We don't use boost libraries which requires linking
|
||||
- We don't use boost libraries which require linking
|
||||
|
||||
|
||||
Naming and formatting
|
||||
|
@ -27,6 +29,8 @@ Naming and formatting
|
|||
// *********** Formatting Example ***********
|
||||
#include "../std/math.hpp"
|
||||
|
||||
typedef double TMyTypeStartsWithCapitalTLetter;
|
||||
|
||||
class ComplexClass
|
||||
{
|
||||
public:
|
||||
|
@ -179,3 +183,4 @@ Tips and Hints
|
|||
-- Calculate array size with ARRAY_SIZE(arrayVariable)
|
||||
-- Declare your own exceptions with DECLARE_EXCEPTION(name, baseException), where baseException is usually RootException
|
||||
-- Throw exceptions with MYTHROW(exceptionName, (message))
|
||||
-- A lot of useful string conversion utils are in base/string_utils.hpp
|
||||
|
|
Loading…
Add table
Reference in a new issue