18 lines
207 B
C++
18 lines
207 B
C++
#ifndef ISIMULATION_H_
|
|
#define ISIMULATION_H_
|
|
|
|
|
|
namespace simulation {
|
|
|
|
class ISimulation
|
|
{
|
|
public:
|
|
virtual ~ISimulation(){}
|
|
virtual void transactionFinished() = 0;
|
|
};
|
|
|
|
} // namespace simulation
|
|
|
|
|
|
#endif
|