[structure] Show build progress in 'check.mk'
[abstract.git] / report / aaTranscript.h
blob6fbda3fd37f12e23bdeaabb36949bb13615290dc
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 #include "aaITranscript.h"
31 class mozIStorageConnection;
32 class aaIStateFilter;
33 class aaILoadQuery;
34 class nsIMutableArray;
36 class aaTranscript : public aaITranscript,
37 public aaIFilter
39 public:
40 aaTranscript(nsISupports *aOuter = 0);
41 virtual ~aaTranscript();
42 NS_DECL_ISUPPORTS
43 NS_FORWARD_NSIARRAY(mList->)
44 NS_DECL_AAILOADQUERY
45 NS_DECL_AAITRANSCRIPT
46 NS_DECL_AAIFILTER
48 nsresult Init() { return mConnection ? NS_OK : NS_ERROR_INVALID_ARG; }
49 private:
50 friend class aaReportTest;
52 nsCOMPtr<mozIStorageConnection> mConnection;
53 nsCOMPtr<aaIFlow> mFlow;
54 nsCOMPtr<aaIFlow> mLoadedFlow;
55 PRInt64 mStart;
56 PRInt64 mEnd;
57 nsCOMPtr<aaIStateFilter> mOpeningFilter;
58 nsCOMPtr<aaIStateFilter> mClosingFilter;
59 nsCOMPtr<aaILoadQuery> mOpening;
60 nsCOMPtr<aaILoadQuery> mClosing;
61 nsCOMPtr<aaILoadQuery> mList;
63 nsCOMPtr<aaILoadQuery> mOpeningBalance;
64 nsCOMPtr<aaILoadQuery> mClosingBalance;
66 nsCOMPtr<aaILoadQuery> mOpeningIncome;
67 nsCOMPtr<aaILoadQuery> mClosingIncome;
70 #endif /* AATRANSCRIPT_H */