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

#import <Foundation/Foundation.h>
#import <NitroModules/HybridObjectRegistry.hpp>
#import "NitroTextToSpeech-Swift-Cxx-Umbrella.hpp"
#import <type_traits>

#include "HybridTextToSpeechSpecSwift.hpp"

@interface NitroTextToSpeechAutolinking : NSObject
@end

@implementation NitroTextToSpeechAutolinking

+ (void) load {
  using namespace margelo::nitro;
  using namespace margelo::nitro::nitrotexttospeech;

  HybridObjectRegistry::registerHybridObjectConstructor(
    "TextToSpeech",
    []() -> std::shared_ptr<HybridObject> {
      std::shared_ptr<margelo::nitro::nitrotexttospeech::HybridTextToSpeechSpec> hybridObject = NitroTextToSpeech::NitroTextToSpeechAutolinking::createTextToSpeech();
      return hybridObject;
    }
  );
}

@end
