correct virtual function defs

This commit is contained in:
Max 2022-05-19 22:38:48 -04:00
parent 702370af8c
commit cca08a1694
7 changed files with 13 additions and 13 deletions

View File

@ -47,7 +47,7 @@ namespace gr {
* creating new instances.
*/
static sptr make(int versbose_flag);
virtual void set_gain_adjust(float gain_adjust) {}
virtual void set_gain_adjust(float gain_adjust) = 0;
};
} // namespace op25_repeater

View File

@ -48,7 +48,7 @@ namespace gr {
* creating new instances.
*/
static sptr make(int versbose_flag, const char * conf_file);
virtual void set_gain_adjust(float gain_adjust) {}
virtual void set_gain_adjust(float gain_adjust) = 0;
};
} // namespace op25_repeater

View File

@ -48,11 +48,11 @@ namespace gr {
* creating new instances.
*/
static sptr make(const char* options, int debug, gr::msg_queue::sptr queue, int msgq_id);
virtual void set_xormask(const char*p) {}
virtual void set_nac(int nac) {}
virtual void set_slotid(int slotid) {}
virtual void insert_whitelist(int grpaddr) {}
virtual void insert_blacklist(int grpaddr) {}
virtual void set_xormask(const char*p) = 0;
virtual void set_nac(int nac) = 0;
virtual void set_slotid(int slotid) = 0;
virtual void insert_whitelist(int grpaddr) = 0;
virtual void insert_blacklist(int grpaddr) = 0;
};
} // namespace op25_repeater

View File

@ -48,7 +48,7 @@ namespace gr {
* creating new instances.
*/
static sptr make(int versbose_flag, const char * conf_file, bool nxdn96_mode);
virtual void set_gain_adjust(float gain_adjust) {}
virtual void set_gain_adjust(float gain_adjust) = 0;
};
} // namespace op25_repeater

View File

@ -48,9 +48,9 @@ namespace gr {
* creating new instances.
*/
static sptr make(const char* udp_host, int port, int debug, bool do_imbe, bool do_output, bool do_msgq, gr::msg_queue::sptr queue, bool do_audio_output, bool do_phase2_tdma, int msgq_id);
virtual void set_xormask(const char*p) {}
virtual void set_nac(int nac) {}
virtual void set_slotid(int slotid) {}
virtual void set_xormask(const char*p) = 0;
virtual void set_nac(int nac) = 0;
virtual void set_slotid(int slotid) = 0;
};
} // namespace op25_repeater

View File

@ -47,7 +47,7 @@ namespace gr {
* creating new instances.
*/
static sptr make(bool encode_flag, bool verbose_flag, int stretch_amt, char* udp_host, int udp_port, bool raw_vectors_flag);
virtual void set_gain_adjust(float gain_adjust) {}
virtual void set_gain_adjust(float gain_adjust) = 0;
};
} // namespace op25_repeater

View File

@ -48,7 +48,7 @@ namespace gr {
* creating new instances.
*/
static sptr make(int versbose_flag, const char * conf_file, bool fullrate_mode);
virtual void set_gain_adjust(float gain_adjust) {}
virtual void set_gain_adjust(float gain_adjust) = 0;
};
} // namespace op25_repeater