// Copyright 2014 The PDFium Authors // 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 #ifndef FPDFSDK_PWL_CPWL_SPECIAL_BUTTON_H_ #define FPDFSDK_PWL_CPWL_SPECIAL_BUTTON_H_ #include <memory> #include "fpdfsdk/pwl/cpwl_button.h" class CPWL_PushButton final : public CPWL_Button { … }; class CPWL_CheckBox final : public CPWL_Button { … }; class CPWL_RadioButton final : public CPWL_Button { … }; #endif // FPDFSDK_PWL_CPWL_SPECIAL_BUTTON_H_