Files
assimp/test/unit/BoostWorkaround/tupletest.cpp
aramis_acg 58eb786d62 Major API cleanup. Unified formatting & doxygen tags in the public API.
Added factory provider for default log streams.
Added default log streams to std::out and std::cerr.
Updated VC8 project config, boost workarounds is now working for the viewer.
Updated unit test suite.
Fixed some minor issues in the postprocessing-framework.

BROKEN: DebugDLL build.




git-svn-id: https://assimp.svn.sourceforge.net/svnroot/assimp/trunk@292 67173fc5-114c-0410-ac8e-9d2fd5bffc1f
2009-01-12 22:06:54 +00:00

35 lines
838 B
C++

#include "../../../include/BoostWorkaround/boost/tuple/tuple.hpp"
struct another
{int dummy;};
boost::tuple<unsigned,unsigned,unsigned> first;
boost::tuple<int,float,double,bool,another> second;
boost::tuple<> third;
boost::tuple<float,float,float> last;
void test () {
// Implicit conversion
first = boost::make_tuple(4,4,4);
// FIXME: Explicit conversion not really required yet
last = (boost::tuple<float,float,float>)boost::make_tuple(4.,4.,4.);
// Non-const access
first.get<0>() = 1;
first.get<1>() = 2;
first.get<2>() = 3;
float f = last.get<2>();
bool b = second.get<3>();
// Const cases
const boost::tuple<unsigned,unsigned,unsigned> constant = boost::make_tuple(4,4,4);
first.get<0>() = constant.get<0>();
// Direct assignment w. explicit conversion
last = first;
}