From 36ec6cfd3079eda7602ef7f04f00b8b0e7adafe2 Mon Sep 17 00:00:00 2001 From: Vinnie Falco Date: Wed, 22 May 2013 13:31:01 -0700 Subject: [PATCH] Add missing multiple-inclusion suppression macros --- src/cpp/ripple/AccountSetTransactor.h | 4 ++++ src/cpp/ripple/OfferCancelTransactor.h | 4 ++++ src/cpp/ripple/RegularKeySetTransactor.h | 4 ++++ src/cpp/ripple/TrustSetTransactor.h | 4 ++++ 4 files changed, 16 insertions(+) diff --git a/src/cpp/ripple/AccountSetTransactor.h b/src/cpp/ripple/AccountSetTransactor.h index 160192161b..2eeddc53f8 100644 --- a/src/cpp/ripple/AccountSetTransactor.h +++ b/src/cpp/ripple/AccountSetTransactor.h @@ -1,3 +1,6 @@ +#ifndef ACCOUNTSETTRANSACTOR_H +#define ACCOUNTSETTRANSACTOR_H + #include "Transactor.h" class AccountSetTransactor : public Transactor @@ -7,5 +10,6 @@ public: TER doApply(); }; +#endif // vim:ts=4 diff --git a/src/cpp/ripple/OfferCancelTransactor.h b/src/cpp/ripple/OfferCancelTransactor.h index 0f9a4eb6b8..007692a2e6 100644 --- a/src/cpp/ripple/OfferCancelTransactor.h +++ b/src/cpp/ripple/OfferCancelTransactor.h @@ -1,3 +1,6 @@ +#ifndef OFFERCANCELTRANSACTOR_H +#define OFFERCANCELTRANSACTOR_H + #include "Transactor.h" class OfferCancelTransactor : public Transactor @@ -7,5 +10,6 @@ public: TER doApply(); }; +#endif // vim:ts=4 diff --git a/src/cpp/ripple/RegularKeySetTransactor.h b/src/cpp/ripple/RegularKeySetTransactor.h index 7d2fc53fe2..564965ff49 100644 --- a/src/cpp/ripple/RegularKeySetTransactor.h +++ b/src/cpp/ripple/RegularKeySetTransactor.h @@ -1,3 +1,6 @@ +#ifndef REGULARKEYSETTRANSACTOR_H +#define REGULARKEYSETTRANSACTOR_H + #include "Transactor.h" class RegularKeySetTransactor : public Transactor @@ -8,5 +11,6 @@ public: TER checkFee(); TER doApply(); }; +#endif // vim:ts=4 diff --git a/src/cpp/ripple/TrustSetTransactor.h b/src/cpp/ripple/TrustSetTransactor.h index ec6cdcd1d7..240059e061 100644 --- a/src/cpp/ripple/TrustSetTransactor.h +++ b/src/cpp/ripple/TrustSetTransactor.h @@ -1,3 +1,6 @@ +#ifndef TRUSTSETTRANSACTOR_H +#define TRUSTSETTRANSACTOR_H + #include "Transactor.h" class TrustSetTransactor : public Transactor @@ -7,5 +10,6 @@ public: TER doApply(); }; +#endif // vim:ts=4