Free Electron
StepCostI.h
Go to the documentation of this file.
1 /* Copyright (C) 2003-2021 Free Electron Organization
2  Any use of this software requires a license. If a valid license
3  was not distributed with this file, visit freeelectron.org. */
4 
5 /** @file */
6 
7 #ifndef __ai_StepCost_h__
8 #define __ai_StepCost_h__
9 
10 namespace fe
11 {
12 
13 /** Calculate a quantity (cost) associated with a directional step in space */
14 class FE_DL_EXPORT StepCostI : virtual public Component
15 {
16  public:
17 virtual Real cost(const SpatialVector &a_from, const SpatialVector &a_to)= 0;
18 };
19 
20 } /* namespace */
21 
22 
23 #endif /* __ai_StepCost_h__ */
24 
Calculate a quantity (cost) associated with a directional step in space.
Definition: StepCostI.h:14
kernel
Definition: namespace.dox:3
Base for all interfacable components.
Definition: Component.h:20