[base] Switch to mozbuild (#114)
[abstract.git] / report / aaTranscript.h
blob4135111f580d015f1b0800dc3e6d1e39925457a8
1 /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /* vim:set ts=2 sw=2 sts=2 et cindent tw=79 ft=cpp: */
3 /*
4 * Copyright (C) 2007 Sergey Yanovich <ynvich@gmail.com>
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License as
8 * published by the Free Software Foundation; either version 2 of the
9 * License, or (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * General Public License for more details.
16 * You should have received a copy of the GNU General Public
17 * License along with this program; if not, write to the
18 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19 * Boston, MA 02111-1307, USA.
22 #ifndef AATRANSCRIPT_H
23 #define AATRANSCRIPT_H 1
25 #define AA_TRANSCRIPT_CID \
26 {0x23816d0c, 0x427c, 0x4130, {0xa0, 0x41, 0x99, 0x92, 0x09, 0x1a, 0x47, 0xa6}}
27 #define AA_TRANSCRIPT_CONTRACT_ID "@aasii.org/report/transcript;1"
29 class mozIStorageConnection;
30 class aaIStateFilter;
31 class aaILoadQuery;
32 class nsIMutableArray;
34 class aaTranscript : public aaITranscript,
35 public aaIFilter
37 public:
38 aaTranscript(nsISupports *aOuter = 0);
39 virtual ~aaTranscript();
40 NS_DECL_ISUPPORTS
41 NS_FORWARD_NSIARRAY(mList->)
42 NS_DECL_AAILOADQUERY
43 NS_DECL_AAITRANSCRIPT
44 NS_DECL_AAIFILTER
46 nsresult Init() { return mConnection ? NS_OK : NS_ERROR_INVALID_ARG; }
47 private:
48 friend class aaReportTest;
50 nsCOMPtr<mozIStorageConnection> mConnection;
51 nsCOMPtr<aaIFlow> mFlow;
52 nsCOMPtr<aaIFlow> mLoadedFlow;
53 PRInt64 mStart;
54 PRInt64 mEnd;
55 nsCOMPtr<aaIStateFilter> mOpeningFilter;
56 nsCOMPtr<aaIStateFilter> mClosingFilter;
57 nsCOMPtr<aaILoadQuery> mOpening;
58 nsCOMPtr<aaILoadQuery> mClosing;
59 nsCOMPtr<aaILoadQuery> mList;
61 nsCOMPtr<aaILoadQuery> mOpeningBalance;
62 nsCOMPtr<aaILoadQuery> mClosingBalance;
64 nsCOMPtr<aaILoadQuery> mOpeningIncome;
65 nsCOMPtr<aaILoadQuery> mClosingIncome;
68 #endif /* AATRANSCRIPT_H */