summaryrefslogtreecommitdiff
path: root/Examples/test-suite/multi_import.h
blob: f893e3de0e9f101502ee185cd2857569a2703174 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#ifndef MULTI_IMPORT_H
#define MULTI_IMPORT_H

class WWW {
  public:
    void nullop() const {}
};

class XXX
{
	public:
		int testx() { return 0;}
};

class YYY : public XXX
{
	public:
		int testy() { return 1;}
};

class ZZZ : public XXX
{
	public:
		int testz() { return 2;}
};

#endif /* MULTI_IMPORT_H */