mirror of
https://github.com/XRPLF/rippled.git
synced 2025-11-26 05:55:51 +00:00
Add missing multiple-inclusion suppression macros
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user