Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Wanet Telecoms Ltd on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by amie8202

  1. amie8202

    eliminate same kind of pairs

    Hi, I have a table A like something like this: | a b c d --|---------------- 1|(1, 2), (0, 0) 2|(3, 1), (1, 2) 3|(0, 0), (3, 1) 4|(0, 0), (1, 2) In this, I want to eliminate the duplicate where there is same kind of pair (1,2) (0,0) and (0,0) (1,2). So I would just end up...
  2. amie8202

    template functions

    Thanks guys for your help! Actually I found out that VC++ 6.0 can have template function inside template class to be implemented when I declare it.. So I sort of managed the problem. :-D
  3. amie8202

    const ref constructor parameter

    I have Xform class which are all implemented in the Xform.h, and the following is the constructor declarations. Xform(const Tiny_vec<T,3>& angles, const Tiny_vec<T,3>& trans); Xform(const Tiny_mat<T,3,3>& rot, const Tiny_vec<T,3>& trans); Xform(const string& filename, Format format...
  4. amie8202

    template functions

    Hi, I'm pretty much new to using VC++ environment..And I really need some help. I use vc++ 6.0, and I get some errors when I try to compile header file in vc++ which worked in linux. What I get is a syntax error in the function.. such as template <Class S, int D> template <Class X> <- here...

Part and Inventory Search

Back
Top