Skip to content

Commit f36bb4c

Browse files
committed
Cleanup.
1 parent d8a6874 commit f36bb4c

2 files changed

Lines changed: 4 additions & 39 deletions

File tree

include/react/ReactiveDomain.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -326,8 +326,8 @@ template
326326
>
327327
struct 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

include/react/ReactiveObject.h

Lines changed: 0 additions & 35 deletions
Original file line numberDiff line numberDiff line change
@@ -1,40 +1,8 @@
11
#pragma once
22

3-
#include "Observer.h"
4-
#include "Conversion.h"
5-
63
////////////////////////////////////////////////////////////////////////////////////////
74
namespace 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

0 commit comments

Comments
 (0)