SOLIDstate
A C++ library for solid state physics
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Pages
Terms.hpp
Go to the documentation of this file.
1 
11 #ifndef TERMS_TERM_HPP
12 #define TERMS_TERM_HPP
13 
14 #include "../QuantumSystem/QuantumSystem.hpp"
15 namespace solid
16 {
17 
23 class ITerm
24 {
25 public:
26 
33  virtual void FillElements() = 0;
34 
39  virtual ~ITerm() {}
40 };
41 
42 } // namespace solid
43 
44 #endif
virtual void FillElements()=0
Filling the matrixElement.
interface for Terms class
Definition: Terms.hpp:23
virtual ~ITerm()
Destroy the ITerm object.
Definition: Terms.hpp:39