///
/// HybridLunarDatePickerSpec.hpp
/// This file was generated by nitrogen. DO NOT MODIFY THIS FILE.
/// https://github.com/mrousavy/nitro
/// Copyright © Marc Rousavy @ Margelo
///

#pragma once

#if __has_include(<NitroModules/HybridObject.hpp>)
#include <NitroModules/HybridObject.hpp>
#else
#error NitroModules cannot be found! Are you sure you installed NitroModules properly?
#endif

// Forward declaration of `LDP_PresentParams` to properly resolve imports.
namespace margelo::nitro::lunardatepicker { struct LDP_PresentParams; }
// Forward declaration of `LDP_ConfigParams` to properly resolve imports.
namespace margelo::nitro::lunardatepicker { struct LDP_ConfigParams; }

#include "LDP_PresentParams.hpp"
#include "LDP_ConfigParams.hpp"

namespace margelo::nitro::lunardatepicker {

  using namespace margelo::nitro;

  /**
   * An abstract base class for `LunarDatePicker`
   * Inherit this class to create instances of `HybridLunarDatePickerSpec` in C++.
   * You must explicitly call `HybridObject`'s constructor yourself, because it is virtual.
   * @example
   * ```cpp
   * class HybridLunarDatePicker: public HybridLunarDatePickerSpec {
   * public:
   *   HybridLunarDatePicker(...): HybridObject(TAG) { ... }
   *   // ...
   * };
   * ```
   */
  class HybridLunarDatePickerSpec: public virtual HybridObject {
    public:
      // Constructor
      explicit HybridLunarDatePickerSpec(): HybridObject(TAG) { }

      // Destructor
      ~HybridLunarDatePickerSpec() override = default;

    public:
      // Properties
      

    public:
      // Methods
      virtual void present(const LDP_PresentParams& params) = 0;
      virtual void configure(const LDP_ConfigParams& config) = 0;

    protected:
      // Hybrid Setup
      void loadHybridMethods() override;

    protected:
      // Tag for logging
      static constexpr auto TAG = "LunarDatePicker";
  };

} // namespace margelo::nitro::lunardatepicker
