Console  8.0.1.0
A test console program
 All Classes Functions
console.cpp
1 
2 
3 class foo
4 {
5 public:
6  /**
7  * Some brief description of this method.
8  * This is more detailed information.
9  * @return Returns an unsigned integer.
10  */
11  unsigned const get() const { return theint_; }
12 
13  /**
14  * @copydoc get() const
15  */
16  unsigned get() { return theint_; }
17 
18 private:
19  static unsigned const theint_ = 100;
20 };
21 
22 int main()
23 {
24 }
Definition: console.cpp:3