proxygen
my::Dimensions Struct Reference

Public Member Functions

std::tuple< const int &, const int & > tuple_view () const
 
bool operator== (const Dimensions &other) const
 

Public Attributes

int w
 
int h
 

Detailed Description

Definition at line 1220 of file ConvTest.cpp.

Member Function Documentation

bool my::Dimensions::operator== ( const Dimensions other) const
inline

Definition at line 1225 of file ConvTest.cpp.

References tuple_view().

1225  {
1226  return this->tuple_view() == other.tuple_view();
1227  }
std::tuple< const int &, const int & > tuple_view() const
Definition: ConvTest.cpp:1222
std::tuple<const int&, const int&> my::Dimensions::tuple_view ( ) const
inline

Definition at line 1222 of file ConvTest.cpp.

Referenced by operator==().

1222  {
1223  return tie(w, h);
1224  }

Member Data Documentation

int my::Dimensions::h

Definition at line 1221 of file ConvTest.cpp.

Referenced by my::estimateSpaceNeeded(), my::parseTo(), and my::toAppend().

int my::Dimensions::w

Definition at line 1221 of file ConvTest.cpp.

Referenced by my::estimateSpaceNeeded(), my::parseTo(), and my::toAppend().


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