[storage] Fix dependency
[abstract.git] / base / aaQuote.cpp
blobf89cbb05cde944fe2b6da94a7adea06ad93d81ac
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 #include "xpcom-config.h"
24 #include "nsCOMPtr.h"
26 /* Project includes */
27 #include "aaIResource.h"
28 #include "aaIHandler.h"
29 #include "aaQuote.h"
31 aaQuote::aaQuote()
32 :mHasTime(PR_FALSE)
37 aaQuote::~aaQuote()
41 NS_IMPL_ISUPPORTS2(aaQuote,
42 aaIDataNode,
43 aaIQuote)
44 /* aaIDataNode */
45 NS_IMETHODIMP
46 aaQuote::GetId(PRInt64 *aId)
48 NS_ENSURE_ARG_POINTER(aId);
49 *aId = mId;
50 return NS_OK;
52 NS_IMETHODIMP
53 aaQuote::SetId(PRInt64 aId)
55 mId = aId;
56 return NS_OK;
59 NS_IMETHODIMP
60 aaQuote::Accept(aaIHandler* aQuery)
62 NS_ENSURE_ARG_POINTER(aQuery);
63 return aQuery->HandleQuote(this);
66 NS_IMETHODIMP
67 aaQuote::GetEdited(PRBool* aEdited)
69 NS_ENSURE_ARG_POINTER(aEdited);
70 *aEdited = PR_FALSE;
71 return NS_OK;
74 /* aaIQuote */
75 NS_IMETHODIMP
76 aaQuote::GetResource(aaIResource ** aResource)
78 NS_ENSURE_ARG_POINTER(aResource);
79 NS_IF_ADDREF(*aResource = mResource);
80 return NS_OK;
82 NS_IMETHODIMP
83 aaQuote::SetResource(aaIResource * aResource)
85 mResource = aResource;
86 return NS_OK;
89 NS_IMETHODIMP
90 aaQuote::GetTime(PRTime *aTime)
92 NS_ENSURE_TRUE( mHasTime, NS_ERROR_NOT_INITIALIZED);
93 NS_ENSURE_ARG_POINTER( aTime );
94 *aTime = mTime;
95 return NS_OK;
97 NS_IMETHODIMP
98 aaQuote::SetTime(PRTime aTime)
100 mTime = aTime;
101 mHasTime = PR_TRUE;
102 return NS_OK;
105 NS_IMETHODIMP
106 aaQuote::GetRate(double *aRate)
108 NS_ENSURE_ARG_POINTER(aRate);
109 *aRate = mRate;
110 return NS_OK;
112 NS_IMETHODIMP
113 aaQuote::SetRate(double aRate)
115 mRate = aRate;
116 return NS_OK;