17 lines
196 B
C++
17 lines
196 B
C++
#include "Animal.hpp"
|
|
|
|
#include <iostream>
|
|
|
|
using namespace std;
|
|
|
|
Animal::Animal(){
|
|
|
|
}
|
|
|
|
Animal::~Animal(){
|
|
|
|
}
|
|
|
|
void Animal::acorda(){
|
|
cout << "Só acorda, sem fazer barulho" << endl;
|
|
} |