aboutsummaryrefslogtreecommitdiffstats
path: root/src/poll_controller.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/poll_controller.h')
-rw-r--r--src/poll_controller.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/poll_controller.h b/src/poll_controller.h
index 65d1fee9..8e709a30 100644
--- a/src/poll_controller.h
+++ b/src/poll_controller.h
@@ -21,22 +21,22 @@
#pragma once
-struct BTS;
+struct gprs_rlcmac_bts;
/**
* I belong to a BTS and I am responsible for finding TBFs and
* SBAs that should have been polled and execute the timeout
* action on them.
*/
-class PollController {
+struct PollController {
public:
- PollController(BTS& bts);
+ PollController(struct gprs_rlcmac_bts& bts);
/* check for poll timeout */
void expireTimedout(int frame_number, unsigned max_delay);
private:
- BTS& m_bts;
+ struct gprs_rlcmac_bts& m_bts;
private:
/* disable copying to avoid slicing */