immutableTactic.hpp
Go to the documentation of this file.
1
2#pragma once
3
4#include "core/common.hpp"
5
6namespace by {
7
11 class _nout immutableTactic: public strTactic {
13
14 public:
15 using super::bind;
16 nbool bind(binder& me, const instance& it) override;
17
18 public:
19 static me singleton;
20 };
21}
Smart pointer with loose type checking and lifetime management.
Definition: binder.hpp:53
Immutable binding strategy.
Definition: immutableTactic.hpp:11
Base class for all managed instances in memlite system.
Definition: instance.hpp:20
Strong reference binding tactic.
Definition: strTactic.hpp:12