「✨」 feat(Ex00): added a very cool feature !
This commit is contained in:
37
ex00/main.cpp
Normal file
37
ex00/main.cpp
Normal file
@ -0,0 +1,37 @@
|
||||
/* ************************************************************************** */
|
||||
/* */
|
||||
/* ::: :::::::: */
|
||||
/* main.cpp :+: :+: :+: */
|
||||
/* +:+ +:+ +:+ */
|
||||
/* By: adjoly <adjoly@student.42angouleme.fr> +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2024/11/30 16:21:28 by adjoly #+# #+# */
|
||||
/* Updated: 2024/12/01 20:23:26 by adjoly ### ########.fr */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
#include "cat.hpp"
|
||||
#include "dog.hpp"
|
||||
#include <iostream>
|
||||
|
||||
//int main(void) {
|
||||
// cat cutie;
|
||||
// dog dogo;
|
||||
//
|
||||
// cutie.makeSound();
|
||||
// dogo.makeSound();
|
||||
//}
|
||||
|
||||
int main() {
|
||||
const Animal* meta = new Animal();
|
||||
const Animal* j = new Dog();
|
||||
const Animal* i = new Cat();
|
||||
|
||||
std::cout << j->getType() << " " << std::endl;
|
||||
std::cout << i->getType() << " " << std::endl;
|
||||
i->makeSound(); //will output the cat sound!
|
||||
j->makeSound();
|
||||
meta->makeSound();
|
||||
|
||||
return 0;
|
||||
}
|
Reference in New Issue
Block a user