#include "other_common.hxx" using namespace std; //! test function overload LIBT2N_EXPORT int t3(int i) { return i; } //! test pair, multiple arguments and namespace LIBT2N_EXPORT bool t3(int i, float f, const string &s, const pair &p) { return (i==p.first) && (f==p.second) && (s=="hello"); } //! test std::vector LIBT2N_EXPORT bool t3(const std::vector &i) { return (i.size()==1) && (i[0]==10); }