Aether
SDL2 based UI Framework for NX
ListSeparator.hpp
1 #ifndef AETHER_LISTSEPARATOR_HPP
2 #define AETHER_LISTSEPARATOR_HPP
3 
4 #include "Aether/base/Element.hpp"
5 
7 #define DEFAULT_HEIGHT 45
8 
9 namespace Aether {
14  class ListSeparator : public Element {
15  public:
21  ListSeparator(unsigned int h = DEFAULT_HEIGHT);
22  };
23 };
24 
25 #endif
ListSeparator(unsigned int h=DEFAULT_HEIGHT)
Construct a new List Separator object.
ListSeparator is simply a blank element. It has a default height which matches Horizon's but can be c...
Definition: ListSeparator.hpp:14
Element is the base class to be inherited to form all other types of elements.
Definition: Element.hpp:18
int h()
Returns height of element.
Base namespace for all Aether related classes and functions.