summaryrefslogtreecommitdiff
path: root/src/listeners/attributelistener.h
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2015-05-29 21:42:33 +0300
committerAndrei Karas <akaras@inbox.ru>2015-05-29 22:43:38 +0300
commit3411edb5d3ae07d247421e4b8f7936a22b7b4027 (patch)
tree63685d0979938a42a62b3f0a880663bb06f4e8ca /src/listeners/attributelistener.h
parent390e5da0f9ecc4407aa7d4bcba1af5730db56271 (diff)
downloadplus-3411edb5d3ae07d247421e4b8f7936a22b7b4027.tar.gz
plus-3411edb5d3ae07d247421e4b8f7936a22b7b4027.tar.bz2
plus-3411edb5d3ae07d247421e4b8f7936a22b7b4027.tar.xz
plus-3411edb5d3ae07d247421e4b8f7936a22b7b4027.zip
Convert Attributes enum into strong typed enum.
Diffstat (limited to 'src/listeners/attributelistener.h')
-rw-r--r--src/listeners/attributelistener.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/listeners/attributelistener.h b/src/listeners/attributelistener.h
index b277fe876..704b722a7 100644
--- a/src/listeners/attributelistener.h
+++ b/src/listeners/attributelistener.h
@@ -21,6 +21,8 @@
#ifndef LISTENERS_ATTRIBUTELISTENER_H
#define LISTENERS_ATTRIBUTELISTENER_H
+#include "enums/being/attributes.h"
+
#include "listeners/baselistener.hpp"
#include "localconsts.h"
@@ -28,11 +30,11 @@
class AttributeListener notfinal
{
public:
- virtual void attributeChanged(const int id,
+ virtual void attributeChanged(const AttributesT id,
const int oldVal,
const int newVal) = 0;
- static void distributeEvent(const int id,
+ static void distributeEvent(const AttributesT id,
const int oldVal,
const int newVal);