Add tcuMaybe that can be used for values that may not exist.
authorMika Isojärvi <misojarvi@google.com>
Tue, 27 Jan 2015 21:06:51 +0000 (13:06 -0800)
committerMika Isojärvi <misojarvi@google.com>
Thu, 29 Jan 2015 01:03:28 +0000 (17:03 -0800)
commit04124860027485485618ab2e3117c3fe77ae8416
tree98baecbb808e7edd1711d88f8a8d09b1c6629140
parent250e3b2093c522cb949be35055577ebd668abe80
Add tcuMaybe that can be used for values that may not exist.

Fairly often we have values that may not exist. Most often with test
case parameters. This template class adds support for values that may
not exist. This class replaces use of pointers and magic numbers for
values that don't exist.

Change-Id: I58b5783f57a34db545909d0ac809e83cbef02792
Android.mk
framework/common/CMakeLists.txt
framework/common/tcuMaybe.cpp [new file with mode: 0644]
framework/common/tcuMaybe.hpp [new file with mode: 0644]