mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-07 12:15:51 +00:00
87 lines
2.6 KiB
C++
87 lines
2.6 KiB
C++
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil c-basic-offset: 2 -*-
|
|
*
|
|
* The contents of this file are subject to the Netscape Public
|
|
* License Version 1.1 (the "License"); you may not use this file
|
|
* except in compliance with the License. You may obtain a copy of
|
|
* the License at http://www.mozilla.org/NPL/
|
|
*
|
|
* Software distributed under the License is distributed on an "AS
|
|
* IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
|
|
* implied. See the License for the specific language governing
|
|
* rights and limitations under the License.
|
|
*
|
|
* The Original Code is mozilla.org code.
|
|
*
|
|
* The Initial Developer of the Original Code is Netscape
|
|
* Communications Corporation. Portions created by Netscape are
|
|
* Copyright (C) 1998 Netscape Communications Corporation. All
|
|
* Rights Reserved.
|
|
*
|
|
* Contributor(s):
|
|
*/
|
|
/*
|
|
* jlogitr.h
|
|
* John Sun
|
|
* 8/17/98 6:16:29 PM
|
|
*/
|
|
|
|
#ifndef __JULIANLOGITERATOR_H_
|
|
#define __JULIANLOGITERATOR_H_
|
|
|
|
#include "ptrarray.h"
|
|
#include "jlogvctr.h"
|
|
#include "nscalutilexp.h"
|
|
|
|
class NS_CAL_UTIL nsCalLogIterator
|
|
{
|
|
private:
|
|
/*-----------------------------
|
|
** MEMBERS
|
|
**---------------------------*/
|
|
JulianPtrArray * m_LogToIterateOver;
|
|
nsCalLogErrorVector::ECompType m_iComponentType;
|
|
t_bool m_bValid;
|
|
t_int32 m_iIndex;
|
|
|
|
/*-----------------------------
|
|
** PRIVATE METHODS
|
|
**---------------------------*/
|
|
|
|
nsCalLogIterator();
|
|
nsCalLogIterator(JulianPtrArray * toIterate, nsCalLogErrorVector::ECompType iComponentType,
|
|
t_bool bValid);
|
|
|
|
nsCalLogErrorVector * findNextElement(t_int32 startIndex);
|
|
public:
|
|
|
|
|
|
static nsCalLogIterator * createIterator(JulianPtrArray * toIterate,
|
|
nsCalLogErrorVector::ECompType iComponentType, t_bool bValid);
|
|
|
|
/**
|
|
* Do this to create iterator of VEVENT log messages
|
|
t_int32 i;
|
|
nsCalLogErrorVector * evtErrVctr = 0;
|
|
nsCalLogError * error = 0;
|
|
if (log != 0)
|
|
{
|
|
nsCalLogIterator * itr = log->createIterator((t_int32) ICalComponent::ICAL_COMPONENT_VEVENT)
|
|
for (evtErrVctr = itr->firstElement(); evtErrVctr != 0; evtErrVctr = itr->nextElement())
|
|
{
|
|
if (evtErrVctr->GetErrors() != 0)
|
|
{
|
|
for (i = 0; i < evtErrVctr->GetErrors()->GetSize(); i++)
|
|
{
|
|
error = (nsCalLogError *) errVctr->GetErrors()->GetAt(i);
|
|
// do what you want.
|
|
}
|
|
}
|
|
}
|
|
*/
|
|
nsCalLogErrorVector * firstElement();
|
|
nsCalLogErrorVector * nextElement();
|
|
};
|
|
|
|
#endif /* __JULIANLOGITERATOR_H_ */
|
|
|