Index: xfa/fwl/core/cfwl_message.cpp |
diff --git a/xfa/fwl/core/cfwl_message.cpp b/xfa/fwl/core/cfwl_message.cpp |
new file mode 100644 |
index 0000000000000000000000000000000000000000..e233900d6ecf808e5d8c3e3a9e9f746538e4e8e5 |
--- /dev/null |
+++ b/xfa/fwl/core/cfwl_message.cpp |
@@ -0,0 +1,20 @@ |
+// 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/core/cfwl_message.h" |
+ |
+CFWL_Message::CFWL_Message() |
+ : m_pSrcTarget(nullptr), m_pDstTarget(nullptr), m_dwExtend(0) {} |
+ |
+CFWL_Message::~CFWL_Message() {} |
+ |
+std::unique_ptr<CFWL_Message> CFWL_Message::Clone() { |
+ return nullptr; |
+} |
+ |
+CFWL_MessageType CFWL_Message::GetClassID() const { |
+ return CFWL_MessageType::None; |
+} |