summaryrefslogtreecommitdiffstats
path: root/comm/mailnews/import/src/nsImportEmbeddedImageData.cpp
blob: d49bccdbfc8c417ba5a483476723987d75d28cb2 (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
45
46
47
48
49
50
51
52
/* -*- 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/. */

#include "nsImportEmbeddedImageData.h"

NS_IMPL_ISUPPORTS(nsImportEmbeddedImageData, nsIMsgEmbeddedImageData)

nsImportEmbeddedImageData::nsImportEmbeddedImageData() {}

nsImportEmbeddedImageData::nsImportEmbeddedImageData(nsIURI* aUri,
                                                     const nsACString& aCid)
    : m_uri(aUri), m_cid(aCid) {}

nsImportEmbeddedImageData::nsImportEmbeddedImageData(nsIURI* aUri,
                                                     const nsACString& aCid,
                                                     const nsACString& aName)
    : m_uri(aUri), m_cid(aCid), m_name(aName) {}

nsImportEmbeddedImageData::~nsImportEmbeddedImageData() {}

NS_IMETHODIMP nsImportEmbeddedImageData::GetUri(nsIURI** aUri) {
  NS_ENSURE_ARG_POINTER(aUri);
  NS_IF_ADDREF(*aUri = m_uri);
  return NS_OK;
}

NS_IMETHODIMP nsImportEmbeddedImageData::SetUri(nsIURI* aUri) {
  m_uri = aUri;
  return NS_OK;
}

NS_IMETHODIMP nsImportEmbeddedImageData::GetCid(nsACString& aCid) {
  aCid = m_cid;
  return NS_OK;
}

NS_IMETHODIMP nsImportEmbeddedImageData::SetCid(const nsACString& aCid) {
  m_cid = aCid;
  return NS_OK;
}

NS_IMETHODIMP nsImportEmbeddedImageData::GetName(nsACString& aName) {
  aName = m_name;
  return NS_OK;
}

NS_IMETHODIMP nsImportEmbeddedImageData::SetName(const nsACString& aName) {
  m_name = aName;
  return NS_OK;
}