initial implementation
This commit is contained in:
commit
1078c49269
30 changed files with 2131 additions and 0 deletions
20
include/xo/process/AbstractRealization.hpp
Normal file
20
include/xo/process/AbstractRealization.hpp
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
/* file AbstractRealization.hpp
|
||||
*
|
||||
* author: Roland Conybeare, Nov 2022
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "xo/reflect/SelfTagging.hpp"
|
||||
#include "AbstractStochasticProcess.hpp"
|
||||
|
||||
namespace xo {
|
||||
namespace process {
|
||||
class AbstractRealization : public reflect::SelfTagging {
|
||||
public:
|
||||
virtual ref::rp<AbstractStochasticProcess> stochastic_process() const = 0;
|
||||
}; /*AbstractRealization*/
|
||||
} /*namespace process*/
|
||||
} /*namespace xo*/
|
||||
|
||||
/* end AbstractRealization.hpp */
|
||||
Loading…
Add table
Add a link
Reference in a new issue