19 lines
367 B
C++
19 lines
367 B
C++
/* file AbstractStochasticProcess.hpp
|
|
*
|
|
* author: Roland Conybeare, Nov 2022
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "xo/reflect/SelfTagging.hpp"
|
|
|
|
namespace xo {
|
|
namespace process {
|
|
class AbstractStochasticProcess : public reflect::SelfTagging {
|
|
}; /*AbstractStochasticProcess*/
|
|
} /*namespace process*/
|
|
|
|
} /*namespace xo*/
|
|
|
|
|
|
/* end AbstractStochasticProcess.hpp */
|