Flutter Impeller
impeller::android::AndroidProc< T > Struct Template Reference

#include <proc_table.h>

Public Types

using AndroidProcType = T
 

Public Member Functions

constexpr bool IsAvailable () const
 
constexpr operator bool () const
 
template<class... Args>
auto operator() (Args &&... args) const
 
void Reset ()
 

Public Attributes

const char * proc_name = nullptr
 
AndroidProcTypeproc = nullptr
 

Detailed Description

template<class T>
struct impeller::android::AndroidProc< T >

Definition at line 72 of file proc_table.h.

Member Typedef Documentation

◆ AndroidProcType

template<class T >
using impeller::android::AndroidProc< T >::AndroidProcType = T

Definition at line 73 of file proc_table.h.

Member Function Documentation

◆ IsAvailable()

template<class T >
constexpr bool impeller::android::AndroidProc< T >::IsAvailable ( ) const
inlineconstexpr

◆ operator bool()

template<class T >
constexpr impeller::android::AndroidProc< T >::operator bool ( ) const
inlineexplicitconstexpr

Definition at line 81 of file proc_table.h.

81 { return IsAvailable(); }
constexpr bool IsAvailable() const
Definition: proc_table.h:79

References impeller::android::AndroidProc< T >::IsAvailable().

◆ operator()()

template<class T >
template<class... Args>
auto impeller::android::AndroidProc< T >::operator() ( Args &&...  args) const
inline

Definition at line 84 of file proc_table.h.

84  {
85  FML_DCHECK(IsAvailable())
86  << "Android method " << proc_name
87  << " is not available on this device. Missing check.";
88  return proc(std::forward<Args>(args)...);
89  }

References impeller::android::AndroidProc< T >::IsAvailable(), impeller::android::AndroidProc< T >::proc, and impeller::android::AndroidProc< T >::proc_name.

◆ Reset()

template<class T >
void impeller::android::AndroidProc< T >::Reset ( )
inline

Definition at line 91 of file proc_table.h.

91 { proc = nullptr; }

References impeller::android::AndroidProc< T >::proc.

Member Data Documentation

◆ proc

◆ proc_name

template<class T >
const char* impeller::android::AndroidProc< T >::proc_name = nullptr

The documentation for this struct was generated from the following file: