AlpacaLibrary/Include/Core/JavaClass/FocusEvent.hpp

24 lines
608 B
C++
Raw Permalink Normal View History

2017-12-25 23:49:48 +00:00
#ifndef FOCUSEVENT_HPP_INCLUDED
#define FOCUSEVENT_HPP_INCLUDED
#include <cstdint>
#include "Object.hpp"
2018-12-27 18:17:09 +00:00
namespace Internal
2017-12-25 23:49:48 +00:00
{
2018-12-27 18:17:09 +00:00
class FocusEvent : public Object
{
public:
FocusEvent(const void* Object);
FocusEvent(Object Source, std::int32_t ID);
FocusEvent() = default;
FocusEvent(FocusEvent&& Obj) = default;
FocusEvent(const FocusEvent& Obj) = default;
FocusEvent& operator=(FocusEvent&& Obj) = default;
FocusEvent& operator=(const FocusEvent& Obj) = default;
};
}
2017-12-25 23:49:48 +00:00
#endif // FOCUSEVENT_HPP_INCLUDED