summaryrefslogtreecommitdiff
path: root/numpy/distutils/tests/swig_ext/src/zoo.h
blob: cb26e6ceff5dfe68f47cc312102ef872a1075fcf (plain)
1
2
3
4
5
6
7
8
9

class Zoo{
		int n;
		char animals[10][50];
public:
		Zoo();
		void shut_up(char *animal);
		void display();
};