If I have a template definition like the one below, can someone provide a code sample for how I would actually instantiate an instance of this with two of my own classes?
template <class T1, class T2>
class LookUpTable { 
public:
    LookUpTable(); 
    void set(T1 x, T2* y);
    T2* get(T1 x);
};
Thanks.