sl@0
|
1 |
// Copyright (c) 2005-2009 Nokia Corporation and/or its subsidiary(-ies).
|
sl@0
|
2 |
// All rights reserved.
|
sl@0
|
3 |
// This component and the accompanying materials are made available
|
sl@0
|
4 |
// under the terms of "Eclipse Public License v1.0"
|
sl@0
|
5 |
// which accompanies this distribution, and is available
|
sl@0
|
6 |
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
sl@0
|
7 |
//
|
sl@0
|
8 |
// Initial Contributors:
|
sl@0
|
9 |
// Nokia Corporation - initial contribution.
|
sl@0
|
10 |
//
|
sl@0
|
11 |
// Contributors:
|
sl@0
|
12 |
//
|
sl@0
|
13 |
// Description:
|
sl@0
|
14 |
//
|
sl@0
|
15 |
|
sl@0
|
16 |
/**
|
sl@0
|
17 |
@file
|
sl@0
|
18 |
@publishedPartner
|
sl@0
|
19 |
@prototype
|
sl@0
|
20 |
*/
|
sl@0
|
21 |
|
sl@0
|
22 |
#ifndef MCAMERAHISTOGRAM_H
|
sl@0
|
23 |
#define MCAMERAHISTOGRAM_H
|
sl@0
|
24 |
|
sl@0
|
25 |
#include <ecam/camerahistogram.h>
|
sl@0
|
26 |
#include <ecam/ecamcommonuidif.hrh>
|
sl@0
|
27 |
|
sl@0
|
28 |
/**
|
sl@0
|
29 |
This is the UID which is used to obtain the MCameraHistogram interface,
|
sl@0
|
30 |
via a call to CCamera::CustomInterface(), which provides implementation of the M-class interface.
|
sl@0
|
31 |
|
sl@0
|
32 |
@see KECamMCameraHistogramUidValue
|
sl@0
|
33 |
@deprecated use KECamMCameraV2HistogramUid
|
sl@0
|
34 |
*/
|
sl@0
|
35 |
static const TUid KECamMCameraHistogramUid = {KECamMCameraHistogramUidValue};
|
sl@0
|
36 |
|
sl@0
|
37 |
/**
|
sl@0
|
38 |
This is the UID which is used to obtain the MCameraV2Histogram interface,
|
sl@0
|
39 |
via a call to CCamera::CustomInterface(), which provides implementation of the M-class interface.
|
sl@0
|
40 |
|
sl@0
|
41 |
@see KECamMCameraV2HistogramUidValue
|
sl@0
|
42 |
*/
|
sl@0
|
43 |
static const TUid KECamMCameraV2HistogramUid = {KECamMCameraV2HistogramUidValue};
|
sl@0
|
44 |
|
sl@0
|
45 |
/**
|
sl@0
|
46 |
This is a mixin class to be implemented by providers of the extension API for the camera histogram.
|
sl@0
|
47 |
|
sl@0
|
48 |
Histograms can be sent to the client or directly displayed on the viewfinder.
|
sl@0
|
49 |
|
sl@0
|
50 |
@note This class is intended for sub classing by licensees only.
|
sl@0
|
51 |
|
sl@0
|
52 |
@see CCamera::CCameraHistogram
|
sl@0
|
53 |
|
sl@0
|
54 |
@publishedPartner
|
sl@0
|
55 |
@deprecated use MCameraV2Histogram
|
sl@0
|
56 |
*/
|
sl@0
|
57 |
class MCameraHistogram
|
sl@0
|
58 |
{
|
sl@0
|
59 |
|
sl@0
|
60 |
public:
|
sl@0
|
61 |
/**
|
sl@0
|
62 |
@deprecated use void MCameraV2Histogram::GetSupportedHistogramsL(TUint& aSupportedHistogramType)
|
sl@0
|
63 |
|
sl@0
|
64 |
Gets a list of the types of histograms the ECam implementation supports.
|
sl@0
|
65 |
|
sl@0
|
66 |
@return A bit field representing all supported types of histograms.
|
sl@0
|
67 |
|
sl@0
|
68 |
@see CCamera::CCameraHistogram::THistogramType
|
sl@0
|
69 |
*/
|
sl@0
|
70 |
virtual TUint32 SupportedHistograms()=0;
|
sl@0
|
71 |
|
sl@0
|
72 |
/**
|
sl@0
|
73 |
@deprecated use void MCameraV2Histogram::PrepareClientHistogramL
|
sl@0
|
74 |
|
sl@0
|
75 |
Request to prepare a non direct histogram.
|
sl@0
|
76 |
|
sl@0
|
77 |
@note A direct histogram is directly embedded into the viewfinder.
|
sl@0
|
78 |
If a non direct histogram is requested the histogram data will be passed to the camera client.
|
sl@0
|
79 |
|
sl@0
|
80 |
@param aType
|
sl@0
|
81 |
The type of histogram to be prepared. This must be one of the supported histogram types returned by
|
sl@0
|
82 |
SupportedHistograms().
|
sl@0
|
83 |
|
sl@0
|
84 |
@leave KErrNotSupported if the histogram type supplied in aType is not supported.
|
sl@0
|
85 |
|
sl@0
|
86 |
@return An integer value which is the handle of the histogram on the ECam implementation.
|
sl@0
|
87 |
This value must be passed to other API functions when requesting operations
|
sl@0
|
88 |
involving this particular histogram.
|
sl@0
|
89 |
|
sl@0
|
90 |
@see PrepareDSAHistogramL
|
sl@0
|
91 |
*/
|
sl@0
|
92 |
virtual TUint PrepareHistogramL(CCamera::CCameraHistogram::THistogramType aType)=0;
|
sl@0
|
93 |
|
sl@0
|
94 |
/**
|
sl@0
|
95 |
@deprecated use void MCameraV2Histogram::PrepareDirectHistogramL
|
sl@0
|
96 |
|
sl@0
|
97 |
Request to prepare a direct histogram.
|
sl@0
|
98 |
|
sl@0
|
99 |
@note A direct histogram is directly embedded into the viewfinder.
|
sl@0
|
100 |
|
sl@0
|
101 |
@param aType
|
sl@0
|
102 |
The type of histogram to be prepared. This must be one of the supported histogram types returned by
|
sl@0
|
103 |
SupportedHistograms().
|
sl@0
|
104 |
@param aPosition
|
sl@0
|
105 |
The position on the screen (in pixels) where the histogram is to be displayed.
|
sl@0
|
106 |
@param aSize
|
sl@0
|
107 |
The size of histogram in pixels.
|
sl@0
|
108 |
@param aColor
|
sl@0
|
109 |
The colour and alpha blending with which the histogram will be displayed.
|
sl@0
|
110 |
|
sl@0
|
111 |
@leave KErrNotSupported if the histogram type supplied in aType is not supported.
|
sl@0
|
112 |
|
sl@0
|
113 |
@return An integer value which is the handle of the histogram on the ECam implementation.
|
sl@0
|
114 |
This value must be passed to other API functions when requesting operations
|
sl@0
|
115 |
involving this particular histogram.
|
sl@0
|
116 |
|
sl@0
|
117 |
@see PrepareHistogramL
|
sl@0
|
118 |
*/
|
sl@0
|
119 |
virtual TUint PrepareDSAHistogramL(CCamera::CCameraHistogram::THistogramType aType, const TPoint& aPosition, const TSize& aSize, const TRgb& aColor)=0;
|
sl@0
|
120 |
|
sl@0
|
121 |
/**
|
sl@0
|
122 |
@deprecated use void MCameraV2Histogram::StartHistogram()
|
sl@0
|
123 |
|
sl@0
|
124 |
Request to start getting histogram notifications.
|
sl@0
|
125 |
|
sl@0
|
126 |
@param aHistHandle
|
sl@0
|
127 |
The handle identifying the histogram on the ECam implementation.
|
sl@0
|
128 |
|
sl@0
|
129 |
@leave KErrArgument if aHistHandle is out of range; also any system wide error.
|
sl@0
|
130 |
*/
|
sl@0
|
131 |
virtual void StartHistogramL(TUint aHistHandle)=0;
|
sl@0
|
132 |
|
sl@0
|
133 |
/**
|
sl@0
|
134 |
@deprecated use void MCameraV2Histogram::StopHistogram()
|
sl@0
|
135 |
|
sl@0
|
136 |
Request to stop getting histogram notifications.
|
sl@0
|
137 |
|
sl@0
|
138 |
@param aHistHandle
|
sl@0
|
139 |
The handle identifying the histogram on the ECam implementation.
|
sl@0
|
140 |
|
sl@0
|
141 |
@leave KErrArgument if aHistHandle is out of range; also any system wide error.
|
sl@0
|
142 |
*/
|
sl@0
|
143 |
virtual void StopHistogramL(TUint aHistHandle)=0;
|
sl@0
|
144 |
|
sl@0
|
145 |
/**
|
sl@0
|
146 |
@deprecated only one histogram is available per buffer with the usage of MHistogramV2Buffer and MCameraV2Histogram.
|
sl@0
|
147 |
|
sl@0
|
148 |
Destroys a histogram on the ECam implementation and releases its handle.
|
sl@0
|
149 |
|
sl@0
|
150 |
@param aHistHandle
|
sl@0
|
151 |
The handle identifying the histogram on the ECam implementation.
|
sl@0
|
152 |
|
sl@0
|
153 |
@leave KErrArgument if aHistHandle is out of range; also any system wide error.
|
sl@0
|
154 |
*/
|
sl@0
|
155 |
virtual void DestroyHistogramL(TUint aHistHandle)=0;
|
sl@0
|
156 |
|
sl@0
|
157 |
/**
|
sl@0
|
158 |
@deprecated use void MCameraV2Histogram::Release(CCamera::CCameraV2Histogram *aHistogramHandle)
|
sl@0
|
159 |
|
sl@0
|
160 |
Releases all the histogram handles created by this object and destroys them on the ECam implementation.
|
sl@0
|
161 |
This function is called from the destructor of CCamera::CCameraHistogram.
|
sl@0
|
162 |
*/
|
sl@0
|
163 |
virtual void Release()=0;
|
sl@0
|
164 |
|
sl@0
|
165 |
/**
|
sl@0
|
166 |
@deprecated use void MCameraV2Histogram::GetHistogramStateL(TBool& aIsHistogramActive)
|
sl@0
|
167 |
|
sl@0
|
168 |
Gets a list of all histograms that are active on the ECam implementation.
|
sl@0
|
169 |
A histogram is in an active state if StartHistogramL() has been called on it.
|
sl@0
|
170 |
|
sl@0
|
171 |
@param aActiveHistograms
|
sl@0
|
172 |
Returned list of histogram handles for which StartHistogramL() has been called.
|
sl@0
|
173 |
|
sl@0
|
174 |
@leave KErrNoMemory if the ECam implementation cannot add more histogram handles due to low memory; also any system wide error.
|
sl@0
|
175 |
*/
|
sl@0
|
176 |
virtual void GetActiveHistogramsL(RArray<TUint>& aActiveHistograms)=0;
|
sl@0
|
177 |
|
sl@0
|
178 |
/**
|
sl@0
|
179 |
@deprecated use void MCameraV2Histogram::UpdateDirectHistogramPropertiesL
|
sl@0
|
180 |
|
sl@0
|
181 |
Updates the properties of a direct histogram.
|
sl@0
|
182 |
|
sl@0
|
183 |
@param aHistHandle
|
sl@0
|
184 |
The handle identifying the histogram on the ECam implementation.
|
sl@0
|
185 |
@param aPosition
|
sl@0
|
186 |
The new position on the screen (in pixels) where the histogram is to be displayed.
|
sl@0
|
187 |
@param aSize
|
sl@0
|
188 |
The new size of histogram in pixels.
|
sl@0
|
189 |
@param aColor
|
sl@0
|
190 |
The new colour and alpha blending with which the histogram will be displayed.
|
sl@0
|
191 |
|
sl@0
|
192 |
@leave KErrArgument if aHistHandle is out of range; also any system wide error.
|
sl@0
|
193 |
*/
|
sl@0
|
194 |
virtual void UpdateDSAHistogramPropertiesL(TUint aHistHandle, const TPoint& aPosition, const TSize& aSize, const TRgb& aColor)=0;
|
sl@0
|
195 |
|
sl@0
|
196 |
/**
|
sl@0
|
197 |
@deprecated use void MCameraV2Histogram::GetDirectHistogramPropertiesL
|
sl@0
|
198 |
|
sl@0
|
199 |
Gets the properties of a direct histogram.
|
sl@0
|
200 |
|
sl@0
|
201 |
@param aHistHandle
|
sl@0
|
202 |
The handle on the ECam implementation of the direct histogram whose properties are to be retrieved.
|
sl@0
|
203 |
@param aPosition
|
sl@0
|
204 |
A reference to a TPoint object that will receive the position (in pixels) of the histogram on the screen.
|
sl@0
|
205 |
@param aSize
|
sl@0
|
206 |
A reference to a TSize object that will receive the size of the histogram in pixels.
|
sl@0
|
207 |
@param aColor
|
sl@0
|
208 |
A reference to a TRgb object that will receive the colour and alpha blending of the histogram.
|
sl@0
|
209 |
|
sl@0
|
210 |
@leave KErrArgument if aHistHandle is out of range; also any system wide error.
|
sl@0
|
211 |
*/
|
sl@0
|
212 |
virtual void GetDSAHistogramPropertiesL(TUint aHistHandle, TPoint& aPosition, TSize& aSize, TRgb& aColor)=0;
|
sl@0
|
213 |
|
sl@0
|
214 |
/**
|
sl@0
|
215 |
@deprecated use MCaptureImageObserver, MCaptureVideoObserver, MDirectViewFinderObserver, and MClientViewFinderObserver
|
sl@0
|
216 |
which have callback functions which notify the client about availability of histogram data. These are sent when
|
sl@0
|
217 |
CCameraV2Histogram::StartHistogram() is called after CCameraV2Histogram::PrepareClientHistogramL(). If
|
sl@0
|
218 |
CCameraV2Histogram::PrepareClientHistogramL() is not called first then the callback returns KErrBadHandle.
|
sl@0
|
219 |
|
sl@0
|
220 |
Returns to the client the histogram data for all the histograms generated by the ECam implementation.
|
sl@0
|
221 |
|
sl@0
|
222 |
@leave KErrNoMemory if the ECam implementation has not been able to create the histogram buffer;
|
sl@0
|
223 |
also any system wide error.
|
sl@0
|
224 |
|
sl@0
|
225 |
@return A reference to a histogram buffer which will contain the returned histogram data.
|
sl@0
|
226 |
*/
|
sl@0
|
227 |
virtual MHistogramBuffer& HistogramDataL()=0;
|
sl@0
|
228 |
|
sl@0
|
229 |
/**
|
sl@0
|
230 |
@deprecated use MCaptureImageObserver, MCaptureVideoObserver, MDirectViewFinderObserver, and MClientViewFinderObserver
|
sl@0
|
231 |
which have callback functions which notify the client about availability of histogram data. These are sent when
|
sl@0
|
232 |
CCameraV2Histogram::StartHistogram() is called after CCameraV2Histogram::PrepareClientHistogramL(). If
|
sl@0
|
233 |
CCameraV2Histogram::PrepareClientHistogramL() is not called first then the callback returns KErrBadHandle.
|
sl@0
|
234 |
|
sl@0
|
235 |
Returns the data for a single histogram from the ECam implementation to the client.
|
sl@0
|
236 |
|
sl@0
|
237 |
@param aHistHandle
|
sl@0
|
238 |
The handle on the ECam implementation of the histogram whose data is to be retrieved.
|
sl@0
|
239 |
|
sl@0
|
240 |
@leave KErrNoMemory if the ECam implementation has not been able to create the histogram buffer;
|
sl@0
|
241 |
also any system wide error.
|
sl@0
|
242 |
|
sl@0
|
243 |
@return A reference to a histogram buffer which will contain the returned histogram data.
|
sl@0
|
244 |
*/
|
sl@0
|
245 |
virtual MHistogramBuffer& HistogramDataL(TUint aHistHandle)=0;
|
sl@0
|
246 |
};
|
sl@0
|
247 |
|
sl@0
|
248 |
/**
|
sl@0
|
249 |
This is a mixin class to be implemented by providers of the extension API for the camera v2 histogram.
|
sl@0
|
250 |
|
sl@0
|
251 |
Histograms can be sent to the client or directly displayed on the screen.
|
sl@0
|
252 |
|
sl@0
|
253 |
@note This class is intended for sub classing by licensees only.
|
sl@0
|
254 |
|
sl@0
|
255 |
@see CCamera::CCameraV2Histogram
|
sl@0
|
256 |
|
sl@0
|
257 |
@publishedPartner
|
sl@0
|
258 |
@prototype
|
sl@0
|
259 |
*/
|
sl@0
|
260 |
class MCameraV2Histogram
|
sl@0
|
261 |
{
|
sl@0
|
262 |
|
sl@0
|
263 |
public:
|
sl@0
|
264 |
|
sl@0
|
265 |
/**
|
sl@0
|
266 |
Releases the interface.
|
sl@0
|
267 |
|
sl@0
|
268 |
@param aHistogramHandle
|
sl@0
|
269 |
The pointer to the histogram class object which would be destroyed by the client.
|
sl@0
|
270 |
*/
|
sl@0
|
271 |
virtual void Release(CCamera::CCameraV2Histogram* aHistogramHandle)=0;
|
sl@0
|
272 |
|
sl@0
|
273 |
/**
|
sl@0
|
274 |
The pointer to the V2 Histogram class used to pass back to the client via observer callbacks when direct histogram
|
sl@0
|
275 |
gets displayed. Implementation is not supposed to not destroy this object.
|
sl@0
|
276 |
|
sl@0
|
277 |
@param aHistogramHandle
|
sl@0
|
278 |
The pointer to the histogram class object.
|
sl@0
|
279 |
|
sl@0
|
280 |
@see MCaptureImageObserver
|
sl@0
|
281 |
@see MDirectViewFinderObserver
|
sl@0
|
282 |
@see MClientViewFinderObserver
|
sl@0
|
283 |
*/
|
sl@0
|
284 |
virtual void SetHistogramHandle(CCamera::CCameraV2Histogram* aHistogramHandle)=0;
|
sl@0
|
285 |
|
sl@0
|
286 |
/**
|
sl@0
|
287 |
Retrieves a list of the supported types of histograms.
|
sl@0
|
288 |
|
sl@0
|
289 |
@param aSupportedHistogramType
|
sl@0
|
290 |
A reference to bit field representing the supported types of histograms as given by CCamera::
|
sl@0
|
291 |
CCameraV2Histogram::THistogramType
|
sl@0
|
292 |
|
sl@0
|
293 |
@leave May leave with any error code.
|
sl@0
|
294 |
|
sl@0
|
295 |
@see CCamera::CCameraV2Histogram::THistogramType
|
sl@0
|
296 |
*/
|
sl@0
|
297 |
virtual void GetSupportedHistogramsL(TUint& aSupportedHistogramType) const =0;
|
sl@0
|
298 |
|
sl@0
|
299 |
/**
|
sl@0
|
300 |
Informs whether or not the direct histogram is supported.
|
sl@0
|
301 |
|
sl@0
|
302 |
@param aIsDirectHistogramSupported
|
sl@0
|
303 |
ETrue implies that direct histogram is supported.
|
sl@0
|
304 |
EFalse implies that direct histogram is not supported.
|
sl@0
|
305 |
|
sl@0
|
306 |
@leave May leave with any error code.
|
sl@0
|
307 |
*/
|
sl@0
|
308 |
virtual void GetDirectHistogramSupportInfoL(TBool& aIsDirectHistogramSupported) const=0;
|
sl@0
|
309 |
|
sl@0
|
310 |
/**
|
sl@0
|
311 |
Request to prepare a client based histogram.
|
sl@0
|
312 |
|
sl@0
|
313 |
@note A direct histogram is directly embedded into the viewfinder.
|
sl@0
|
314 |
If a non direct histogram is requested the histogram data will be passed to the camera client.
|
sl@0
|
315 |
|
sl@0
|
316 |
@param aType
|
sl@0
|
317 |
The type of histogram to be prepared. This must be one of the supported histogram types given by
|
sl@0
|
318 |
GetSupportedHistogramsL.
|
sl@0
|
319 |
|
sl@0
|
320 |
@leave May leave with any error code.
|
sl@0
|
321 |
|
sl@0
|
322 |
@note Each histogram object will either prepare direct histogram or client histogram. Preparing multiple histograms
|
sl@0
|
323 |
per object is an invalid case.
|
sl@0
|
324 |
|
sl@0
|
325 |
@see PrepareDSAHistogramL
|
sl@0
|
326 |
*/
|
sl@0
|
327 |
virtual void PrepareClientHistogramL(CCamera::CCameraV2Histogram::THistogramType aType)=0;
|
sl@0
|
328 |
|
sl@0
|
329 |
/**
|
sl@0
|
330 |
Prepares the direct histogram.
|
sl@0
|
331 |
|
sl@0
|
332 |
@param aDirectHistogramParameters
|
sl@0
|
333 |
The parameters required to prepare the direct histogram.
|
sl@0
|
334 |
|
sl@0
|
335 |
@leave May leave with any error code.
|
sl@0
|
336 |
|
sl@0
|
337 |
@note Each histogram object will either prepare direct histogram or client histogram. Preparing multiple histograms
|
sl@0
|
338 |
per object is an invalid case.
|
sl@0
|
339 |
|
sl@0
|
340 |
@see PrepareClientHistogramL
|
sl@0
|
341 |
*/
|
sl@0
|
342 |
virtual void PrepareDirectHistogramL(const CCamera::CCameraV2Histogram::TDirectHistogramParameters& aDirectHistogramParameters)=0;
|
sl@0
|
343 |
|
sl@0
|
344 |
/**
|
sl@0
|
345 |
Update the parameters for the direct histogram.
|
sl@0
|
346 |
|
sl@0
|
347 |
@param aDirectHistogramParameters
|
sl@0
|
348 |
The desired parameters which have to be used to update the direct histogram.
|
sl@0
|
349 |
|
sl@0
|
350 |
@leave May leave with any error code.
|
sl@0
|
351 |
*/
|
sl@0
|
352 |
virtual void UpdateDirectHistogramPropertiesL(const CCamera::CCameraV2Histogram::TDirectHistogramParameters& aDirectHistogramParameters)=0;
|
sl@0
|
353 |
|
sl@0
|
354 |
/**
|
sl@0
|
355 |
Retrieves the currently used parameters for the direct histogram.
|
sl@0
|
356 |
|
sl@0
|
357 |
@param aDirectHistogramParameters
|
sl@0
|
358 |
Retrieves the parameters currently being used for the direct histogram.
|
sl@0
|
359 |
|
sl@0
|
360 |
@leave May leave with any error code.
|
sl@0
|
361 |
*/
|
sl@0
|
362 |
virtual void GetDirectHistogramPropertiesL(CCamera::CCameraV2Histogram::TDirectHistogramParameters& aDirectHistogramParameters) const=0;
|
sl@0
|
363 |
|
sl@0
|
364 |
/**
|
sl@0
|
365 |
Request to start getting histogram notifications.
|
sl@0
|
366 |
|
sl@0
|
367 |
@note Histogram should have been prepared before calling this method.
|
sl@0
|
368 |
|
sl@0
|
369 |
@note Histogram notifications are sent to the client by using relevant callbacks for image capture, video capture
|
sl@0
|
370 |
and viewfinders.
|
sl@0
|
371 |
|
sl@0
|
372 |
@see MCaptureImageObserver
|
sl@0
|
373 |
@see MCaptureVideoObserver
|
sl@0
|
374 |
@see MDirectViewFinderObserver
|
sl@0
|
375 |
@see MClientViewFinderObserver
|
sl@0
|
376 |
*/
|
sl@0
|
377 |
virtual void StartHistogram()=0;
|
sl@0
|
378 |
|
sl@0
|
379 |
/**
|
sl@0
|
380 |
Request to stop generating histogram.
|
sl@0
|
381 |
*/
|
sl@0
|
382 |
virtual void StopHistogram()=0;
|
sl@0
|
383 |
|
sl@0
|
384 |
/**
|
sl@0
|
385 |
Informs whether the histogram is currently active or not.
|
sl@0
|
386 |
A histogram is in an active state if StartHistogram() has been called on it and has not been yet stopped.
|
sl@0
|
387 |
|
sl@0
|
388 |
@param aIsHistogramActive
|
sl@0
|
389 |
ETrue indicates that the histogram is active.
|
sl@0
|
390 |
EFalse indicates that the histogram is inactive.
|
sl@0
|
391 |
|
sl@0
|
392 |
@leave May leave with any error code.
|
sl@0
|
393 |
*/
|
sl@0
|
394 |
virtual void GetHistogramStateL(TBool& aIsHistogramActive) const=0;
|
sl@0
|
395 |
};
|
sl@0
|
396 |
|
sl@0
|
397 |
#endif // MCAMERAHISTOGRAM_H
|