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