2016-03-04 23:03:47 +00:00
|
|
|
#include "specter/Control.hpp"
|
2015-12-06 01:24:51 +00:00
|
|
|
|
2018-12-08 05:24:02 +00:00
|
|
|
namespace specter {
|
2015-12-06 01:24:51 +00:00
|
|
|
|
2018-12-08 05:24:02 +00:00
|
|
|
Control::Control(ViewResources& res, View& parentView, IControlBinding* controlBinding)
|
2015-12-10 03:14:38 +00:00
|
|
|
: View(res, parentView), m_controlBinding(controlBinding) {}
|
2018-12-08 05:24:02 +00:00
|
|
|
|
2015-12-27 22:42:45 +00:00
|
|
|
std::recursive_mutex ITextInputView::m_textInputLk;
|
2015-12-06 01:24:51 +00:00
|
|
|
|
2018-12-08 05:24:02 +00:00
|
|
|
} // namespace specter
|