summaryrefslogtreecommitdiff
path: root/src/main/ElementVisitor.h
blob: 89de7d753d79b1e000511aad5ef05c0fccdbf0c8 (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
37
38
39
40
41
42
/*
 * ElementVisitor.h
 *
 *  Created on: Apr 2, 2011
 *      Author: jakob
 */

#ifndef ELEMENTVISITOR_H_
#define ELEMENTVISITOR_H_

//#include "StraightElement.h"
//#include "Quadrupole.h"
//#include "CurvedElement.h"
//#include "Dipole.h"
//#include "CompositeElement.h"
//#include "Element.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_ */