touchgfx::Pair is only used within TouchGFX.
 
Symbols
loading...
Files
loading...

touchgfx::Pair

Syntax

struct Pair { public:     T1 first;       T2 second;      Pair() : first(T1()), second(T2()) { }     Pair(const T1& x, const T2& y) : first(x), second(y) { }     template <class U, class V>     Pair(const Pair<U, V>& p) : first(p.first), second(p.second) { } };

References

LocationText
Types.hpp:863
struct Pair
AbstractPartition.hpp:225
Pair< T*, uint16_t > find(const void* pT)
Types.hpp:902
Pair(const Pair<U, V>& p) : first(p.first), second(p.second) { }