summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/poolshrk.h
diff options
context:
space:
mode:
author David Haywood <hazemamewip@hotmail.com>2018-07-01 02:34:14 +0100
committer ajrhacker <ajrhacker@users.noreply.github.com>2018-06-30 21:34:14 -0400
commit7bfe316fd41e7c2bb9ef1bb160f152ae1635e9f9 (patch)
tree4422f6f2e8735c92c81f1027adfadbbe2ba25793 /src/mame/includes/poolshrk.h
parent296de771c3a9f7712f72e600dcb381a2c94190db (diff)
stronger private: use (N, O, P, Q, R) (#3717)
* private N,O (nw) * P + Q (nw) * R (nt)
Diffstat (limited to 'src/mame/includes/poolshrk.h')
-rw-r--r--src/mame/includes/poolshrk.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mame/includes/poolshrk.h b/src/mame/includes/poolshrk.h
index 6d2bb11d2b5..c8c284ec8f8 100644
--- a/src/mame/includes/poolshrk.h
+++ b/src/mame/includes/poolshrk.h
@@ -32,10 +32,11 @@ public:
m_leds(*this, "led%u", 0U)
{ }
- void init_poolshrk();
void poolshrk(machine_config &config);
-protected:
+ void init_poolshrk();
+
+private:
DECLARE_WRITE8_MEMBER(da_latch_w);
DECLARE_WRITE8_MEMBER(led_w);
DECLARE_WRITE8_MEMBER(watchdog_w);
@@ -55,7 +56,6 @@ protected:
void poolshrk_cpu_map(address_map &map);
virtual void machine_start() override { m_leds.resolve(); }
-private:
required_device<cpu_device> m_maincpu;
required_device<watchdog_timer_device> m_watchdog;
required_device<gfxdecode_device> m_gfxdecode;