Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
OpenWalnut
OpenWalnut Core
Commits
7babe30d
Commit
7babe30d
authored
Dec 12, 2011
by
Mathias Goldau
Browse files
[STYLE] Removed trailing newlines after modifiers like private, protected and public
parent
f1bc88bc
Changes
309
Hide whitespace changes
Inline
Side-by-side
Showing
20 changed files
with
0 additions
and
36 deletions
+0
-36
src/core/common/WCondition.h
src/core/common/WCondition.h
+0
-1
src/core/common/WConditionOneShot.h
src/core/common/WConditionOneShot.h
+0
-2
src/core/common/WConditionSet.h
src/core/common/WConditionSet.h
+0
-2
src/core/common/WException.h
src/core/common/WException.h
+0
-2
src/core/common/WFlag.h
src/core/common/WFlag.h
+0
-1
src/core/common/WFlagForwarder.h
src/core/common/WFlagForwarder.h
+0
-3
src/core/common/WHistogram.h
src/core/common/WHistogram.h
+0
-1
src/core/common/WHistogramBasic.h
src/core/common/WHistogramBasic.h
+0
-1
src/core/common/WItemSelectionItem.h
src/core/common/WItemSelectionItem.h
+0
-2
src/core/common/WItemSelector.h
src/core/common/WItemSelector.h
+0
-3
src/core/common/WLogEntry.h
src/core/common/WLogEntry.h
+0
-1
src/core/common/WLogStream.h
src/core/common/WLogStream.h
+0
-1
src/core/common/WLogger.h
src/core/common/WLogger.h
+0
-1
src/core/common/WPathHelper.h
src/core/common/WPathHelper.h
+0
-3
src/core/common/WPredicateHelper.h
src/core/common/WPredicateHelper.h
+0
-3
src/core/common/WProgress.h
src/core/common/WProgress.h
+0
-2
src/core/common/WProgressCombiner.h
src/core/common/WProgressCombiner.h
+0
-2
src/core/common/WProjectFileIO.h
src/core/common/WProjectFileIO.h
+0
-2
src/core/common/WPropertyBase.h
src/core/common/WPropertyBase.h
+0
-1
src/core/common/WPropertyGroup.h
src/core/common/WPropertyGroup.h
+0
-2
No files found.
src/core/common/WCondition.h
View file @
7babe30d
...
...
@@ -85,7 +85,6 @@ public:
boost
::
signals2
::
connection
subscribeSignal
(
t_ConditionNotifierType
notifier
)
const
;
protected:
/**
* Type used for condition notification.
*/
...
...
src/core/common/WConditionOneShot.h
View file @
7babe30d
...
...
@@ -41,7 +41,6 @@ class OWCOMMON_EXPORT WConditionOneShot: public WCondition
{
friend
class
WConditionOneShot_test
;
public:
/**
* Default constructor.
*/
...
...
@@ -63,7 +62,6 @@ public:
virtual
void
notify
();
protected:
/**
* Locked as long the condition was not fired.
*/
...
...
src/core/common/WConditionSet.h
View file @
7babe30d
...
...
@@ -43,7 +43,6 @@ class OWCOMMON_EXPORT WConditionSet: public WCondition
{
friend
class
WConditionSetTest
;
public:
/**
* Shared pointer to instance of this class.
*/
...
...
@@ -111,7 +110,6 @@ public:
bool
isResetable
();
protected:
/**
* Flag denoting whether the condition set should act like a one shot condition.
*/
...
...
src/core/common/WException.h
View file @
7babe30d
...
...
@@ -44,7 +44,6 @@ class OWCOMMON_EXPORT WException: public std::exception
friend
class
WExceptionTest
;
public:
/**
* Default constructor.
* \param msg Exception description.
...
...
@@ -105,7 +104,6 @@ protected:
*/
static
bool
noBacktrace
;
private:
/**
* Color used for the "trace:" label.
*/
...
...
src/core/common/WFlag.h
View file @
7babe30d
...
...
@@ -185,7 +185,6 @@ public:
virtual
bool
changed
(
bool
reset
=
false
);
protected:
/**
* The condition to be used for waiting/notifying. Please note, that it gets deleted during destruction.
*/
...
...
src/core/common/WFlagForwarder.h
View file @
7babe30d
...
...
@@ -53,7 +53,6 @@ template < typename T >
class
OWCOMMON_EXPORT
WFlagForwarder
// NOLINT
{
public:
/**
* Default constructor.
*
...
...
@@ -75,7 +74,6 @@ public:
void
forward
(
boost
::
shared_ptr
<
WFlag
<
T
>
>
to
);
protected:
/**
* The source property to which all other properties are synced to.
*/
...
...
@@ -97,7 +95,6 @@ protected:
void
sourceChanged
();
private:
/**
* Disallow copy construction.
*
...
...
src/core/common/WHistogram.h
View file @
7babe30d
...
...
@@ -117,7 +117,6 @@ public:
virtual
std
::
pair
<
double
,
double
>
getIntervalForIndex
(
size_t
index
)
const
=
0
;
protected:
/**
* The smallest value
*/
...
...
src/core/common/WHistogramBasic.h
View file @
7babe30d
...
...
@@ -112,7 +112,6 @@ public:
virtual
void
insert
(
double
value
);
protected:
private:
/**
* Bins to associate with the values. Each bin has the width of m_intervalWidth;
...
...
src/core/common/WItemSelectionItem.h
View file @
7babe30d
...
...
@@ -35,7 +35,6 @@
class
OWCOMMON_EXPORT
WItemSelectionItem
// NOLINT
{
public:
/**
* Constructs a new item with the specified values.
*
...
...
@@ -81,7 +80,6 @@ public:
bool
operator
==
(
const
WItemSelectionItem
&
other
)
const
;
protected:
/**
* Item name.
*/
...
...
src/core/common/WItemSelector.h
View file @
7babe30d
...
...
@@ -53,7 +53,6 @@ class OWCOMMON_EXPORT WItemSelector // NOLINT
{
friend
class
WItemSelection
;
public:
/**
* The type used for storing index lists. It is a list of integer correlating with the elements in the managed WItemSelection class.
*/
...
...
@@ -236,7 +235,6 @@ public:
IndexList
getIndexList
()
const
;
protected:
/**
* Constructor creates an selector for the specified selection of items. Noting is selected after construction.
*
...
...
@@ -261,7 +259,6 @@ protected:
boost
::
signals2
::
connection
m_invalidateSignalConnection
;
private:
/**
* Creates a new selector instance using the specified index list. Handles all needed signal subscription stuff.
*
...
...
src/core/common/WLogEntry.h
View file @
7babe30d
...
...
@@ -56,7 +56,6 @@ LogLevel logLevelFromString( const std::string& str );
class
OWCOMMON_EXPORT
WLogEntry
// NOLINT
{
public:
/**
* Creates a new log message.
*
...
...
src/core/common/WLogStream.h
View file @
7babe30d
...
...
@@ -102,7 +102,6 @@ public:
bool
isColored
()
const
;
private:
/**
* Disallow copy.
*
...
...
src/core/common/WLogger.h
View file @
7babe30d
...
...
@@ -130,7 +130,6 @@ public:
boost
::
signals2
::
connection
subscribeSignal
(
LogEvent
event
,
LogEntryCallback
callback
);
protected:
private:
/**
* Constructor. The logger is created using the static method startup.
...
...
src/core/common/WPathHelper.h
View file @
7babe30d
...
...
@@ -43,7 +43,6 @@
class
OWCOMMON_EXPORT
WPathHelper
// NOLINT
{
public:
/**
* Destructor.
*/
...
...
@@ -189,14 +188,12 @@ public:
static
boost
::
filesystem
::
path
getConfigPath
();
protected:
/**
* Constructors are protected because this is a Singleton.
*/
WPathHelper
();
private:
/**
* Application path. NOT the path of the binary. The application path is the directory in which the binary is placed.
* The binary path is m_appPath+"/openwalnut".
...
...
src/core/common/WPredicateHelper.h
View file @
7babe30d
...
...
@@ -93,7 +93,6 @@ namespace WPredicateHelper
};
private:
/**
* The string to check against.
*/
...
...
@@ -132,7 +131,6 @@ namespace WPredicateHelper
};
private:
/**
* The string to check against.
*/
...
...
@@ -218,7 +216,6 @@ namespace WPredicateHelper
};
private:
/**
* The predicate to use for checking
*/
...
...
src/core/common/WProgress.h
View file @
7babe30d
...
...
@@ -42,7 +42,6 @@ class OWCOMMON_EXPORT WProgress // NOLINT
{
friend
class
WProgressTest
;
public:
/**
* Creates a new progress instance as child of the specified progress. The instance is instantly marked "running".
*
...
...
@@ -118,7 +117,6 @@ public:
virtual
bool
isDetermined
();
protected:
/**
* Progress name. Can be set only once (during construction).
*/
...
...
src/core/common/WProgressCombiner.h
View file @
7babe30d
...
...
@@ -41,7 +41,6 @@ class OWCOMMON_EXPORT WProgressCombiner: public WProgress
{
friend
class
WProgressCombinerTest
;
public:
/**
* Default constructor. It creates a empty combiner.
*
...
...
@@ -109,7 +108,6 @@ public:
std
::
string
getCombinedNames
()
const
;
protected:
/**
* The name of the combiner.
*/
...
...
src/core/common/WProjectFileIO.h
View file @
7babe30d
...
...
@@ -36,7 +36,6 @@
class
OWCOMMON_EXPORT
WProjectFileIO
// NOLINT
{
public:
/**
* Default constructor.
*/
...
...
@@ -71,7 +70,6 @@ public:
virtual
void
save
(
std
::
ostream
&
output
)
=
0
;
// NOLINT
protected:
private:
};
...
...
src/core/common/WPropertyBase.h
View file @
7babe30d
...
...
@@ -296,7 +296,6 @@ public:
typedef
boost
::
function
<
void
(
boost
::
shared_ptr
<
WPropertyBase
>
)
>
PropertyChangeNotifierType
;
protected:
/**
* Name of the property.
*/
...
...
src/core/common/WPropertyGroup.h
View file @
7babe30d
...
...
@@ -50,7 +50,6 @@ class OWCOMMON_EXPORT WPropertyGroup: public WPropertyGroupBase
{
friend
class
WPropertiesTest
;
public:
// the following typedefs are for convenience.
typedef
boost
::
shared_ptr
<
WPropertyGroup
>
SPtr
;
//!< shared pointer to object of this type
typedef
boost
::
shared_ptr
<
const
WPropertyGroup
>
ConstSPtr
;
//!< const shared pointer to object of this type
...
...
@@ -888,7 +887,6 @@ public:
WPropertyBase
::
PropertyChangeNotifierType
notifier
,
bool
hide
=
false
);
protected:
private:
};
...
...
Prev
1
2
3
4
5
…
16
Next
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment