aboutsummaryrefslogtreecommitdiffstats
path: root/src/TII.h
diff options
context:
space:
mode:
authorandreas128 <Andreas>2017-08-17 16:28:35 +0200
committerandreas128 <Andreas>2017-08-17 16:28:35 +0200
commita8b1aa0b60a1f5bf884069091d0f43b12c521bb8 (patch)
treec1a670f026215797f97c1acc7298c5ad7e05f85e /src/TII.h
parent4fe5b4cacad22c84110061cb1cce4c0cf29b79fa (diff)
parentfe62dff97924c045affe10da2e896e29e10e6aed (diff)
downloaddabmod-a8b1aa0b60a1f5bf884069091d0f43b12c521bb8.tar.gz
dabmod-a8b1aa0b60a1f5bf884069091d0f43b12c521bb8.tar.bz2
dabmod-a8b1aa0b60a1f5bf884069091d0f43b12c521bb8.zip
Merge branch 'next_memless' of github.com:Opendigitalradio/ODR-DabMod into next_memless
Diffstat (limited to 'src/TII.h')
-rw-r--r--src/TII.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/TII.h b/src/TII.h
index 2bd2040..fe67978 100644
--- a/src/TII.h
+++ b/src/TII.h
@@ -83,7 +83,7 @@ class TIIError : public std::runtime_error {
class TII : public ModCodec, public RemoteControllable
{
public:
- TII(unsigned int dabmode, tii_config_t& tii_config, unsigned phase);
+ TII(unsigned int dabmode, const tii_config_t& tii_config, unsigned phase);
virtual ~TII();
TII(const TII&) = delete;
TII& operator=(const TII&) = delete;
@@ -110,7 +110,7 @@ class TII : public ModCodec, public RemoteControllable
unsigned int m_dabmode;
// Remote-controllable settings
- tii_config_t& m_conf;
+ tii_config_t m_conf;
// Internal flag when to insert TII
bool m_insert;