1 #include "com_android_graphics_bootanimation_flags.h" 2 3 4 5 6 7 8 namespace com::android::graphics::bootanimation::flags { 9 10 class flag_provider : public flag_provider_interface { 11 public: 12 13 multidisplay()14 virtual bool multidisplay() override { 15 return COM_ANDROID_GRAPHICS_BOOTANIMATION_FLAGS_MULTIDISPLAY; 16 } 17 18 19 20 }; 21 22 std::unique_ptr<flag_provider_interface> provider_ = 23 std::make_unique<flag_provider>(); 24 } 25 26 com_android_graphics_bootanimation_flags_multidisplay()27bool com_android_graphics_bootanimation_flags_multidisplay() { 28 return COM_ANDROID_GRAPHICS_BOOTANIMATION_FLAGS_MULTIDISPLAY; 29 } 30 31