FREE Subscription to Dr. Dobb’s Digest: Same Great Content, New Digital Edition
Site Archive (Complete)
C++
Email
Print
Reprint

add to:
Del.icio.us
Digg
Google
Furl
Slashdot
Y! MyWeb
Blink
February 01, 2006

Associative Chains in C++

(Page 7 of 8)

February, 2006: Associative Chains in C++

Listing 5

class Clank
{
public:
  Handle locus;
  size_t distance;
};
class Handle
{
private:
  const void *ptr;
  const std::type_info *tid;
public:
  bool operator==(const Handle &h) const
  {
    return ptr == h.ptr && tid == h.tid;
  }
  // ...
};

Previous Page | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 Next Page
TOP 5 ARTICLES
No Top Articles.



MICROSITES
FEATURED TOPIC

ADDITIONAL TOPICS

INFO-LINK