summaryrefslogtreecommitdiff
path: root/src/main/ElementVisitor.h
blob: 126c9ce25a2eebb58689c246e851f35961d7312a (plain) (blame)
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
28
29
30
31
32
33
34
35
36
/*
 * ElementVisitor.h
 *
 *  Created on: Apr 2, 2011
 *      Author: jakob
 */

#ifndef ELEMENTVISITOR_H_
#define ELEMENTVISITOR_H_

namespace vhc {


class StraightElement;
class Quadrupole;
class CurvedElement;
class Dipole;
class CompositeElement;


class ElementVisitor {

public:
	ElementVisitor();
	virtual ~ElementVisitor();

	virtual void visit(const StraightElement* straight) const = 0;

	virtual void visit(const Quadrupole* quadrupole) const = 0;

	virtual void visit(const Dipole* dipole) const = 0;
};

}

#endif /* ELEMENTVISITOR_H_ */