Wrap code for better readability

This commit is contained in:
Simon De Backer
2020-09-07 22:03:40 +02:00
parent 8ee38fab9e
commit 5d92393ee7
202 changed files with 4031 additions and 2153 deletions

View File

@@ -159,7 +159,8 @@ class Terminal : public QGraphicsObject
@brief Terminal::conductorsCount
@return the number of conductors attached to the terminal.
*/
inline int Terminal::conductorsCount() const {
inline int Terminal::conductorsCount() const
{
return(conductors_.size());
}
@@ -167,7 +168,8 @@ inline int Terminal::conductorsCount() const {
@brief Terminal::number
@return the number of terminal.
*/
inline QString Terminal::number() const {
inline QString Terminal::number() const
{
return(number_terminal_);
}
@@ -175,7 +177,8 @@ inline QString Terminal::number() const {
@brief Terminal::name
@return the name of terminal.
*/
inline QString Terminal::name() const {
inline QString Terminal::name() const
{
return(name_terminal_);
}