summaryrefslogtreecommitdiffstats
path: root/comm/mailnews/import/src/nsImportFieldMap.h
blob: 1d13df70a19a17d3c2b019434d573206fc99c6b4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */

#ifndef nsImportFieldMap_h___
#define nsImportFieldMap_h___

#include "nscore.h"
#include "nsIImportFieldMap.h"
#include "nsTArray.h"
#include "nsString.h"
#include "nsIStringBundle.h"

////////////////////////////////////////////////////////////////////////

class nsIStringBundle;

class nsImportFieldMap : public nsIImportFieldMap {
 public:
  NS_DECL_THREADSAFE_ISUPPORTS

  NS_DECL_NSIIMPORTFIELDMAP

  explicit nsImportFieldMap(nsIStringBundle* aBundle);

  static nsresult Create(nsIStringBundle* aBundle, REFNSIID aIID,
                         void** aResult);

 private:
  virtual ~nsImportFieldMap();
  nsresult Allocate(int32_t newSize);

 private:
  int32_t m_numFields;
  int32_t* m_pFields;
  bool* m_pActive;
  int32_t m_allocated;
  nsTArray<nsString*> m_descriptions;
  int32_t m_mozFieldCount;
  bool m_skipFirstRecord;
};

#endif