/usr/include/globjects/AbstractState.inl is in libglobjects-dev 1.1.0-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | #pragma once
#include <globjects/StateSetting.h>
namespace globjects
{
template <typename... Arguments>
void AbstractState::set(void (*function)(Arguments...), Arguments... arguments)
{
add(new StateSetting(function, arguments...));
}
} // namespace globjects
|