[report] Fix a leak in transcript
[abstract.git] / base / aaState.cpp
blobf6bc3a937c0304c0c22b8bc29b22e89668f0e34c
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 "aaIFlow.h"
28 #include "aaIResource.h"
29 #include "aaState.h"
31 aaState::aaState()
35 aaState::~aaState()
39 NS_IMPL_ISUPPORTS3(aaState,
40 aaIDataNode,
41 aaIState,
42 aaIBalance)
43 /* aaIDataNode */
44 NS_IMETHODIMP
45 aaState::GetId(PRInt64 *aId)
47 NS_ENSURE_ARG_POINTER(aId);
48 *aId = mId;
49 return NS_OK;
51 NS_IMETHODIMP
52 aaState::SetId(PRInt64 aId)
54 mId = aId;
55 return NS_OK;
58 NS_IMETHODIMP
59 aaState::Accept(aaIHandler* aQuery)
61 NS_ENSURE_ARG_POINTER(aQuery);
62 return NS_ERROR_NOT_AVAILABLE;
65 NS_IMETHODIMP
66 aaState::GetEdited(PRBool* aEdited)
68 NS_ENSURE_ARG_POINTER(aEdited);
69 return NS_ERROR_NOT_AVAILABLE;
72 /* aaIState */
73 NS_IMETHODIMP
74 aaState::GetFlow(aaIFlow* *aFlow)
76 NS_ENSURE_ARG_POINTER(aFlow);
77 NS_IF_ADDREF(*aFlow = mFlow);
78 return NS_OK;
80 NS_IMETHODIMP
81 aaState::SetFlow(aaIFlow* aFlow)
83 mFlow = aFlow;
84 return NS_OK;
86 aaIFlow*
87 aaState::PickFlow()
89 return mFlow;
92 NS_IMETHODIMP
93 aaState::GetResource(aaIResource* *aResource)
95 NS_ENSURE_ARG_POINTER(aResource);
96 NS_IF_ADDREF(*aResource = mResource);
97 return NS_OK;
99 NS_IMETHODIMP
100 aaState::SetResource(aaIResource* aResource)
102 mResource = aResource;
103 return NS_OK;
106 NS_IMETHODIMP
107 aaState::GetSide(PRBool *aSide)
109 NS_ENSURE_ARG_POINTER(aSide);
110 *aSide = mSide;
111 return NS_OK;
113 NS_IMETHODIMP
114 aaState::SetSide(PRBool aSide)
116 mSide = aSide;
117 return NS_OK;
119 PRBool
120 aaState::PickSide()
122 return mSide;
125 NS_IMETHODIMP
126 aaState::GetAmount(double *aAmount)
128 NS_ENSURE_ARG_POINTER(aAmount);
129 *aAmount = mAmount;
130 return NS_OK;
132 NS_IMETHODIMP
133 aaState::SetAmount(double aAmount)
135 mAmount = aAmount;
136 return NS_OK;
138 double
139 aaState::PickAmount()
141 return mAmount;
144 NS_IMETHODIMP
145 aaState::GetValue(double *aValue)
147 NS_ENSURE_ARG_POINTER(aValue);
148 *aValue = mValue;
149 return NS_OK;
151 NS_IMETHODIMP
152 aaState::SetValue(double aValue)
154 mValue = aValue;
155 return NS_OK;
157 double
158 aaState::PickValue()
160 return mValue;