summaryrefslogtreecommitdiff
path: root/src/horizontal_position.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/horizontal_position.h')
-rw-r--r--src/horizontal_position.h13
1 files changed, 8 insertions, 5 deletions
diff --git a/src/horizontal_position.h b/src/horizontal_position.h
index df592d9..1f4b161 100644
--- a/src/horizontal_position.h
+++ b/src/horizontal_position.h
@@ -20,15 +20,18 @@
#ifndef LIBSUB_HORIZONTAL_POSITION_H
#define LIBSUB_HORIZONTAL_POSITION_H
+#include "horizontal_reference.h"
+
namespace sub {
-enum HorizontalPosition
+class HorizontalPosition
{
- LEFT,
- CENTRE,
- RIGHT
+public:
+ HorizontalReference reference;
+
+ bool operator== (HorizontalPosition const & other) const;
};
-
+
}
#endif