initial implementation

This commit is contained in:
Roland Conybeare 2023-10-18 12:06:07 -04:00
commit 1078c49269
30 changed files with 2131 additions and 0 deletions

View 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 */