DoxyBugs  1
Temp.h
Go to the documentation of this file.
1 
2 
3 namespace ns
4 {
6  template <typename T>
7  struct Temp
8  {
9  Temp(const T& t = T(), bool b = false);
10  Temp(const Temp& rhs);
11 
12  void swap(Temp& rhs);
13 
14  bool operator==(const Temp& rhs) const;
15  bool hasDefaultScore() const;
16  const T& defaultScore() const;
17 
20  virtual void defaultScore(const T& d);
21 
24  virtual void hasDefaultScore(bool b);
25  };
26 }
27 
28 #include "Temp.cpp"