summaryrefslogtreecommitdiffstats
path: root/src/commands/addloans.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/commands/addloans.h')
-rw-r--r--src/commands/addloans.h47
1 files changed, 47 insertions, 0 deletions
diff --git a/src/commands/addloans.h b/src/commands/addloans.h
new file mode 100644
index 0000000..b80cbc3
--- /dev/null
+++ b/src/commands/addloans.h
@@ -0,0 +1,47 @@
+/***************************************************************************
+ copyright : (C) 2005-2006 by Robby Stephenson
+ ***************************************************************************/
+
+/***************************************************************************
+ * *
+ * This program is free software; you can redistribute it and/or modify *
+ * it under the terms of version 2 of the GNU General Public License as *
+ * published by the Free Software Foundation; *
+ * *
+ ***************************************************************************/
+
+#ifndef TELLICO_ADDLOANS_H
+#define TELLICO_ADDLOANS_H
+
+#include "../borrower.h"
+#include "../datavectors.h"
+
+#include <kcommand.h>
+
+namespace Tellico {
+ namespace Command {
+
+/**
+ * @author Robby Stephenson
+ */
+class AddLoans : public KCommand {
+
+public:
+ AddLoans(Data::BorrowerPtr borrower, Data::LoanVec loans, bool addToCalendar);
+
+ virtual void execute();
+ virtual void unexecute();
+ virtual QString name() const;
+
+private:
+ Data::BorrowerPtr m_borrower;
+ Data::LoanVec m_loans;
+ bool m_addedLoanField : 1;
+ bool m_addToCalendar : 1;
+};
+
+ } // end namespace
+}
+
+#endif