summaryrefslogtreecommitdiff
path: root/xfa/fwl/cfwl_message.cpp
blob: 7411c24bd7873e2ef1053d531069cfe46c4db7c3 (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
// Copyright 2016 PDFium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

// Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com

#include "xfa/fwl/cfwl_message.h"

CFWL_Message::CFWL_Message(CFWL_Message::Type type) : m_type(type) {}

CFWL_Message::CFWL_Message(Type type, CFWL_Widget* pSrcTarget)
    : m_type(type), m_pSrcTarget(pSrcTarget) {}

CFWL_Message::CFWL_Message(Type type,
                           CFWL_Widget* pSrcTarget,
                           CFWL_Widget* pDstTarget)
    : m_type(type), m_pSrcTarget(pSrcTarget), m_pDstTarget(pDstTarget) {}

CFWL_Message::CFWL_Message(const CFWL_Message& that) = default;

CFWL_Message::~CFWL_Message() = default;

std::unique_ptr<CFWL_Message> CFWL_Message::Clone() {
  return nullptr;
}