xmake.repo/packages/n/noesis/latest/Include/NsGui/CommandData.inl

18 lines
586 B
Plaintext
Raw Normal View History

2024-12-22 19:15:02 +08:00
////////////////////////////////////////////////////////////////////////////////////////////////////
// NoesisGUI - http://www.noesisengine.com
// Copyright (c) 2013 Noesis Technologies S.L. All Rights Reserved.
////////////////////////////////////////////////////////////////////////////////////////////////////
namespace Noesis
{
////////////////////////////////////////////////////////////////////////////////////////////////////
template<class T> const T* CommandData::RegisterCommand(const Ptr<T>& command)
{
InsertCommand((RoutedCommand*)command);
return command;
}
}