mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
STYLE: adjust deprecations for OSspecific
- skip processing OSspecific/MSwindows since this can cause duplicate doxygen entries STYLE: adjust formatting in code templates STYLE: use std::string methods without extra qualifications
This commit is contained in:
@ -62,7 +62,7 @@ class CLASSNAME
|
||||
:
|
||||
public baseClassName
|
||||
{
|
||||
// Private data
|
||||
// Private Data
|
||||
|
||||
//- Description of data_
|
||||
dataType data_;
|
||||
@ -79,12 +79,24 @@ class CLASSNAME
|
||||
|
||||
public:
|
||||
|
||||
// Static data members
|
||||
// Static Data Members
|
||||
|
||||
//- Static data staticData
|
||||
static const dataType staticData;
|
||||
|
||||
|
||||
// Generated Methods
|
||||
|
||||
// //- Construct null
|
||||
// CLASSNAME() = default;
|
||||
//
|
||||
// //- Copy construct
|
||||
// CLASSNAME(const CLASSNAME&) = default;
|
||||
//
|
||||
// //- Copy assignment
|
||||
// CLASSNAME& operator=(const CLASSNAME&) = default;
|
||||
|
||||
|
||||
// Constructors
|
||||
|
||||
//- Construct null
|
||||
@ -112,13 +124,13 @@ public:
|
||||
|
||||
// Member Functions
|
||||
|
||||
// Access
|
||||
// Access
|
||||
|
||||
// Check
|
||||
// Check
|
||||
|
||||
// Edit
|
||||
// Edit
|
||||
|
||||
// Write
|
||||
// Write
|
||||
|
||||
|
||||
// Member Operators
|
||||
|
||||
@ -67,7 +67,7 @@ class CLASSNAME
|
||||
:
|
||||
public baseClassName
|
||||
{
|
||||
// Private data
|
||||
// Private Data
|
||||
|
||||
dataType data_;
|
||||
|
||||
@ -83,11 +83,22 @@ class CLASSNAME
|
||||
|
||||
public:
|
||||
|
||||
// Static data members
|
||||
// Static Data Members
|
||||
|
||||
//- Static data someStaticData
|
||||
static const dataType staticData;
|
||||
|
||||
// Generated Methods
|
||||
|
||||
// //- Construct null
|
||||
// CLASSNAME() = default;
|
||||
//
|
||||
// //- Copy construct
|
||||
// CLASSNAME(const CLASSNAME&) = default;
|
||||
//
|
||||
// //- Copy assignment
|
||||
// CLASSNAME& operator=(const CLASSNAME&) = default;
|
||||
|
||||
|
||||
// Constructors
|
||||
|
||||
|
||||
Reference in New Issue
Block a user