diff options
author | Karel Kočí <cynerd@email.cz> | 2017-12-17 13:33:10 +0100 |
---|---|---|
committer | Karel Kočí <cynerd@email.cz> | 2017-12-17 13:33:10 +0100 |
commit | 63163510aecfe19d976a9125ff2151698c4efb51 (patch) | |
tree | 54a3f153291eb1da30fcb8a7def09981b4a7f7b9 | |
parent | c11d282cdc2fdf4668d4dc2710968daa17a0ffc6 (diff) | |
download | qtmips-63163510aecfe19d976a9125ff2151698c4efb51.tar.gz qtmips-63163510aecfe19d976a9125ff2151698c4efb51.tar.bz2 qtmips-63163510aecfe19d976a9125ff2151698c4efb51.zip |
Prepend include guard of coreview header files with COREVIEW_
-rw-r--r-- | qtmips_gui/coreview/connection.h | 6 | ||||
-rw-r--r-- | qtmips_gui/coreview/latch.h | 6 | ||||
-rw-r--r-- | qtmips_gui/coreview/multiplexer.h | 6 | ||||
-rw-r--r-- | qtmips_gui/coreview/programcounter.h | 6 |
4 files changed, 12 insertions, 12 deletions
diff --git a/qtmips_gui/coreview/connection.h b/qtmips_gui/coreview/connection.h index eda6afe..efe3942 100644 --- a/qtmips_gui/coreview/connection.h +++ b/qtmips_gui/coreview/connection.h @@ -1,5 +1,5 @@ -#ifndef CONNECTION_H -#define CONNECTION_H +#ifndef COREVIEW_CONNECTION_H +#define COREVIEW_CONNECTION_H #include <QGraphicsObject> #include <QList> @@ -57,4 +57,4 @@ namespace coreview { class Connection; }; -#endif // CONNECTION_H +#endif // COREVIEW_CONNECTION_H diff --git a/qtmips_gui/coreview/latch.h b/qtmips_gui/coreview/latch.h index 0148b67..ff1ff6e 100644 --- a/qtmips_gui/coreview/latch.h +++ b/qtmips_gui/coreview/latch.h @@ -1,5 +1,5 @@ -#ifndef LATCH_H -#define LATCH_H +#ifndef COREVIEW_LATCH_H +#define COREVIEW_LATCH_H #include <QGraphicsObject> #include <QList> @@ -42,4 +42,4 @@ namespace coreview { class Latch; }; -#endif // LATCH_H +#endif // COREVIEW_LATCH_H diff --git a/qtmips_gui/coreview/multiplexer.h b/qtmips_gui/coreview/multiplexer.h index 6aa11a6..16378fe 100644 --- a/qtmips_gui/coreview/multiplexer.h +++ b/qtmips_gui/coreview/multiplexer.h @@ -1,5 +1,5 @@ -#ifndef MULTIPLEXER_H -#define MULTIPLEXER_H +#ifndef COREVIEW_MULTIPLEXER_H +#define COREVIEW_MULTIPLEXER_H #include <QGraphicsItem> #include "qtmipsexception.h" @@ -38,4 +38,4 @@ namespace coreview { class Multiplexer; } -#endif // MULTIPLEXER_H +#endif // COREVIEW_MULTIPLEXER_H diff --git a/qtmips_gui/coreview/programcounter.h b/qtmips_gui/coreview/programcounter.h index 91d1da3..220b42e 100644 --- a/qtmips_gui/coreview/programcounter.h +++ b/qtmips_gui/coreview/programcounter.h @@ -1,5 +1,5 @@ -#ifndef PROGRAMCOUNTER_H -#define PROGRAMCOUNTER_H +#ifndef COREVIEW_PROGRAMCOUNTER_H +#define COREVIEW_PROGRAMCOUNTER_H #include <QGraphicsObject> #include <QPainter> @@ -39,4 +39,4 @@ namespace coreview { class ProgramCounter; }; -#endif // PROGRAMCOUNTER_H +#endif // COREVIEW_PROGRAMCOUNTER_H |