File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -326,8 +326,8 @@ template
326326>
327327struct ReactiveEngineInterface
328328{
329- typedef typename TEngine::NodeInterface NodeInterface;
330- typedef typename TEngine::TurnInterface TurnInterface;
329+ typedef TEngine::NodeInterface NodeInterface;
330+ typedef TEngine::TurnInterface TurnInterface;
331331
332332 static TEngine& Engine ()
333333 {
@@ -527,8 +527,8 @@ class DomainBase
527527 // //////////////////////////////////////////////////////////////////////////////////////
528528 // / Aliases for transactions
529529 // //////////////////////////////////////////////////////////////////////////////////////
530- typedef TransactionData<typename Engine::TurnInterface> TransactionData;
531- typedef TransactionInput<typename Engine::TurnInterface> TransactionInput;
530+ typedef TransactionData<Engine::TurnInterface> TransactionData;
531+ typedef TransactionInput<Engine::TurnInterface> TransactionInput;
532532
533533 // //////////////////////////////////////////////////////////////////////////////////////
534534 // / Transaction
Original file line number Diff line number Diff line change 11#pragma once
22
3- #include " Observer.h"
4- #include " Conversion.h"
5-
63// //////////////////////////////////////////////////////////////////////////////////////
74namespace react {
85
9- // //////////////////////////////////////////////////////////////////////////////////////
10- // / DynamicRSignal
11- // //////////////////////////////////////////////////////////////////////////////////////
12- // template
13- // <
14- // typename TDomain,
15- // typename S
16- // >
17- // class DynamicRSignal : public RSignal<TDomain,S>
18- // {
19- // public:
20- // DynamicRSignal() :
21- // RSignal(),
22- // owner_{ nullptr }
23- // {
24- // }
25- //
26- // DynamicRSignal(RSignal&& other, void* owner) :
27- // RSignal(std::move(other)),
28- // owner_{ owner }
29- // {
30- // }
31- //
32- // void* Owner() const { return owner_; }
33- //
34- // protected:
35- // void* owner_;
36- // };
37-
386// //////////////////////////////////////////////////////////////////////////////////////
397// / ReactiveObject
408// //////////////////////////////////////////////////////////////////////////////////////
@@ -51,9 +19,6 @@ class ReactiveObject
5119 template <typename S>
5220 using VarSignal = RVarSignal<TDomain,S>;
5321
54- // template <typename S>
55- // using DynamicSignal = DynamicRSignal<TDomain,S>;
56-
5722 template <typename E>
5823 using Events = REvents<TDomain,E>;
5924
You can’t perform that action at this time.
0 commit comments