consolidate all repos to one for archive
This commit is contained in:
13
semester_2/programiranje_2/primeri/Example09/Cat.h
Normal file
13
semester_2/programiranje_2/primeri/Example09/Cat.h
Normal file
@@ -0,0 +1,13 @@
|
||||
#ifndef EXAMPLE09_CAT_H
|
||||
#define EXAMPLE09_CAT_H
|
||||
|
||||
#include <iostream>
|
||||
|
||||
class Cat : public Animal {
|
||||
public:
|
||||
void voice() const {
|
||||
std::cout << "meow" << std::endl;
|
||||
}
|
||||
};
|
||||
|
||||
#endif //EXAMPLE09_CAT_H
|
||||
Reference in New Issue
Block a user