Flutter macOS Embedder
flutter::TestCustomValue Class Reference

Public Member Functions

 TestCustomValue ()
 
 TestCustomValue (int x, int y)
 
 ~TestCustomValue ()=default
 
int x () const
 
int y () const
 

Detailed Description

Definition at line 287 of file encodable_value_unittests.cc.

Constructor & Destructor Documentation

◆ TestCustomValue() [1/2]

flutter::TestCustomValue::TestCustomValue ( )
inline

Definition at line 289 of file encodable_value_unittests.cc.

289 : x_(0), y_(0) {}

◆ TestCustomValue() [2/2]

flutter::TestCustomValue::TestCustomValue ( int  x,
int  y 
)
inline

Definition at line 290 of file encodable_value_unittests.cc.

290 : x_(x), y_(y) {}

◆ ~TestCustomValue()

flutter::TestCustomValue::~TestCustomValue ( )
default

Member Function Documentation

◆ x()

int flutter::TestCustomValue::x ( ) const
inline

Definition at line 293 of file encodable_value_unittests.cc.

293 { return x_; }

◆ y()

int flutter::TestCustomValue::y ( ) const
inline

Definition at line 294 of file encodable_value_unittests.cc.

294 { return y_; }

The documentation for this class was generated from the following file:
flutter::TestCustomValue::y
int y() const
Definition: encodable_value_unittests.cc:294
flutter::TestCustomValue::x
int x() const
Definition: encodable_value_unittests.cc:293