Flutter Windows Embedder
flutter::CustomEncodableValue Class Reference

#include <encodable_value.h>

Public Member Functions

 CustomEncodableValue (const std::any &value)
 
 ~CustomEncodableValue ()=default
 
 operator std::any & ()
 
 operator const std::any & () const
 
bool operator< (const CustomEncodableValue &other) const
 
bool operator== (const CustomEncodableValue &other) const
 

Detailed Description

Definition at line 60 of file encodable_value.h.

Constructor & Destructor Documentation

◆ CustomEncodableValue()

flutter::CustomEncodableValue::CustomEncodableValue ( const std::any &  value)
inlineexplicit

Definition at line 62 of file encodable_value.h.

62 : value_(value) {}

◆ ~CustomEncodableValue()

flutter::CustomEncodableValue::~CustomEncodableValue ( )
default

Member Function Documentation

◆ operator const std::any &()

flutter::CustomEncodableValue::operator const std::any & ( ) const
inline

Definition at line 69 of file encodable_value.h.

69 { return value_; }

◆ operator std::any &()

flutter::CustomEncodableValue::operator std::any & ( )
inline

Definition at line 67 of file encodable_value.h.

67 { return value_; }

◆ operator<()

bool flutter::CustomEncodableValue::operator< ( const CustomEncodableValue other) const
inline

Definition at line 80 of file encodable_value.h.

80  {
81  return this < &other;
82  }

◆ operator==()

bool flutter::CustomEncodableValue::operator== ( const CustomEncodableValue other) const
inline

Definition at line 83 of file encodable_value.h.

83  {
84  return this == &other;
85  }

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