lion.h

来自「C++上机课的习题答案」· C头文件 代码 · 共 22 行

H
22
字号
// Chapter 10 of C++ How to Program
// Debugging Problem (lion.h)

#ifndef LION_H
#define LION_H

#include "animal.h"

// class Lion definition
class Lion : public Animal {

public:
   Lion( int = 0, int = 0 );

   virtual void print() const;

}; // end class Lion

#endif // LION_H


⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?