Bug 705910  2013-10-27
Check the indices goes correctly
 All Classes Namespaces Files Functions Variables Enumerations Enumerator
human.h
Go to the documentation of this file.
1 
13 class 人間 : public 動物
14 {
15 public:
20  人間( unsigned int i年齢 ) : 動物( i年齢 )
21  {
22  }
23 
31  bool 読む( wchar_t* 本 )
32  {
33  return true;
34  }
35 
44  bool 書く( wchar_t* ペン類, wchar_t* ノート類 )
45  {
46  return true;
47  }
48 };
This class have functions like animals do.
Definition: animal.h:10
bool 読む(wchar_t *本)
reading function
Definition: human.h:31
bool 書く(wchar_t *ペン類, wchar_t *ノート類)
drinking function
Definition: human.h:44
This class have functions like animals do.
Definition: human.h:13
人間(unsigned int i年齢)
constructor
Definition: human.h:20