Complete the basic API for LedgerEntrySet's.

This commit is contained in:
JoelKatz
2012-07-25 04:01:42 -07:00
parent 40c4d686fb
commit de6ef42baf
2 changed files with 72 additions and 0 deletions

View File

@@ -21,6 +21,8 @@ public:
SLE::pointer mEntry;
LedgerEntryAction mAction;
int mSeq;
LedgerEntrySetEntry(SLE::pointer e, LedgerEntryAction a, int s) : mEntry(e), mAction(a), mSeq(s) { ; }
};