Add missing multiple-inclusion suppression macros

This commit is contained in:
Vinnie Falco
2013-05-22 13:31:01 -07:00
parent cf6f4f47f2
commit 36ec6cfd30
4 changed files with 16 additions and 0 deletions

View File

@@ -1,3 +1,6 @@
#ifndef ACCOUNTSETTRANSACTOR_H
#define ACCOUNTSETTRANSACTOR_H
#include "Transactor.h" #include "Transactor.h"
class AccountSetTransactor : public Transactor class AccountSetTransactor : public Transactor
@@ -7,5 +10,6 @@ public:
TER doApply(); TER doApply();
}; };
#endif
// vim:ts=4 // vim:ts=4

View File

@@ -1,3 +1,6 @@
#ifndef OFFERCANCELTRANSACTOR_H
#define OFFERCANCELTRANSACTOR_H
#include "Transactor.h" #include "Transactor.h"
class OfferCancelTransactor : public Transactor class OfferCancelTransactor : public Transactor
@@ -7,5 +10,6 @@ public:
TER doApply(); TER doApply();
}; };
#endif
// vim:ts=4 // vim:ts=4

View File

@@ -1,3 +1,6 @@
#ifndef REGULARKEYSETTRANSACTOR_H
#define REGULARKEYSETTRANSACTOR_H
#include "Transactor.h" #include "Transactor.h"
class RegularKeySetTransactor : public Transactor class RegularKeySetTransactor : public Transactor
@@ -8,5 +11,6 @@ public:
TER checkFee(); TER checkFee();
TER doApply(); TER doApply();
}; };
#endif
// vim:ts=4 // vim:ts=4

View File

@@ -1,3 +1,6 @@
#ifndef TRUSTSETTRANSACTOR_H
#define TRUSTSETTRANSACTOR_H
#include "Transactor.h" #include "Transactor.h"
class TrustSetTransactor : public Transactor class TrustSetTransactor : public Transactor
@@ -7,5 +10,6 @@ public:
TER doApply(); TER doApply();
}; };
#endif
// vim:ts=4 // vim:ts=4