[xpunit] Rename from 'cxxunit' and switch to mozbuild (bug #114)
[abstract.git] / base / aaQuote.cpp
blobb6014b6f54943a2c6bcdf22692e639256421bded
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 <abstract/aacore.h>
24 #include "nsCOMPtr.h"
26 /* Project includes */
27 #include <abstract/base/aaIResource.h>
28 #include <abstract/base/aaIQuote.h>
29 #include <abstract/base/aaIHandler.h>
30 #include "aaQuote.h"
32 aaQuote::aaQuote()
33 :mHasTime(PR_FALSE)
38 aaQuote::~aaQuote()
42 NS_IMPL_ISUPPORTS2(aaQuote,
43 aaIDataNode,
44 aaIQuote)
45 /* aaIDataNode */
46 NS_IMETHODIMP
47 aaQuote::GetId(PRInt64 *aId)
49 NS_ENSURE_ARG_POINTER(aId);
50 *aId = mId;
51 return NS_OK;
53 NS_IMETHODIMP
54 aaQuote::SetId(PRInt64 aId)
56 mId = aId;
57 return NS_OK;
60 NS_IMETHODIMP
61 aaQuote::Accept(aaIHandler* aQuery)
63 NS_ENSURE_ARG_POINTER(aQuery);
64 return aQuery->HandleQuote(this);
67 NS_IMETHODIMP
68 aaQuote::GetEdited(PRBool* aEdited)
70 NS_ENSURE_ARG_POINTER(aEdited);
71 *aEdited = PR_FALSE;
72 return NS_OK;
75 /* aaIQuote */
76 NS_IMETHODIMP
77 aaQuote::GetResource(aaIResource ** aResource)
79 NS_ENSURE_ARG_POINTER(aResource);
80 NS_IF_ADDREF(*aResource = mResource);
81 return NS_OK;
83 NS_IMETHODIMP
84 aaQuote::SetResource(aaIResource * aResource)
86 mResource = aResource;
87 return NS_OK;
90 NS_IMETHODIMP
91 aaQuote::GetTime(PRTime *aTime)
93 NS_ENSURE_TRUE( mHasTime, NS_ERROR_NOT_INITIALIZED);
94 NS_ENSURE_ARG_POINTER( aTime );
95 *aTime = mTime;
96 return NS_OK;
98 NS_IMETHODIMP
99 aaQuote::SetTime(PRTime aTime)
101 mTime = aTime;
102 mHasTime = PR_TRUE;
103 return NS_OK;
106 NS_IMETHODIMP
107 aaQuote::GetRate(double *aRate)
109 NS_ENSURE_ARG_POINTER(aRate);
110 *aRate = mRate;
111 return NS_OK;
113 NS_IMETHODIMP
114 aaQuote::SetRate(double aRate)
116 mRate = aRate;
117 return NS_OK;