Simple SFML GUI  0.2a
TextInputable.hpp
1 #ifndef TEXTINPUTABLE_HPP
2 #define TEXTINPUTABLE_HPP
3 
4 #include <SFML/System.hpp>
5 
6 class TextInputable {
7 public:
8  TextInputable() = default;
9  virtual ~TextInputable() = default;
10  virtual void updateInput(sf::Uint32 code)=0;
11 
12  static bool notifyInput(sf::Uint32 code);
13  static bool isFocused();
14 
15 };
16 
17 #endif // TEXTINPUTABLE_HPP
Definition: TextInputable.hpp:6