mirror of
https://github.com/SFML/SFML.git
synced 2024-11-25 04:41:05 +08:00
Unify TODO comment style for better searchability
Continuing precedent set in b199cc6
This commit is contained in:
parent
249caa2fb2
commit
eb9c84309f
@ -33,21 +33,21 @@ namespace sf::priv
|
|||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
void SensorImpl::initialize()
|
void SensorImpl::initialize()
|
||||||
{
|
{
|
||||||
// To be implemented
|
// TODO: not implemented
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
void SensorImpl::cleanup()
|
void SensorImpl::cleanup()
|
||||||
{
|
{
|
||||||
// To be implemented
|
// TODO: not implemented
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
bool SensorImpl::isAvailable(Sensor::Type /*sensor*/)
|
bool SensorImpl::isAvailable(Sensor::Type /*sensor*/)
|
||||||
{
|
{
|
||||||
// To be implemented
|
// TODO: not implemented
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -55,7 +55,7 @@ bool SensorImpl::isAvailable(Sensor::Type /*sensor*/)
|
|||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
bool SensorImpl::open(Sensor::Type /*sensor*/)
|
bool SensorImpl::open(Sensor::Type /*sensor*/)
|
||||||
{
|
{
|
||||||
// To be implemented
|
// TODO: not implemented
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -63,14 +63,14 @@ bool SensorImpl::open(Sensor::Type /*sensor*/)
|
|||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
void SensorImpl::close()
|
void SensorImpl::close()
|
||||||
{
|
{
|
||||||
// To be implemented
|
// TODO: not implemented
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
Vector3f SensorImpl::update()
|
Vector3f SensorImpl::update()
|
||||||
{
|
{
|
||||||
// To be implemented
|
// TODO: not implemented
|
||||||
return {0, 0, 0};
|
return {0, 0, 0};
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -78,7 +78,7 @@ Vector3f SensorImpl::update()
|
|||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
void SensorImpl::setEnabled(bool /*enabled*/)
|
void SensorImpl::setEnabled(bool /*enabled*/)
|
||||||
{
|
{
|
||||||
// To be implemented
|
// TODO: not implemented
|
||||||
}
|
}
|
||||||
|
|
||||||
} // namespace sf::priv
|
} // namespace sf::priv
|
||||||
|
@ -33,21 +33,21 @@ namespace sf::priv
|
|||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
void SensorImpl::initialize()
|
void SensorImpl::initialize()
|
||||||
{
|
{
|
||||||
// To be implemented
|
// TODO: not implemented
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
void SensorImpl::cleanup()
|
void SensorImpl::cleanup()
|
||||||
{
|
{
|
||||||
// To be implemented
|
// TODO: not implemented
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
bool SensorImpl::isAvailable(Sensor::Type /*sensor*/)
|
bool SensorImpl::isAvailable(Sensor::Type /*sensor*/)
|
||||||
{
|
{
|
||||||
// To be implemented
|
// TODO: not implemented
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -55,7 +55,7 @@ bool SensorImpl::isAvailable(Sensor::Type /*sensor*/)
|
|||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
bool SensorImpl::open(Sensor::Type /*sensor*/)
|
bool SensorImpl::open(Sensor::Type /*sensor*/)
|
||||||
{
|
{
|
||||||
// To be implemented
|
// TODO: not implemented
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -63,14 +63,14 @@ bool SensorImpl::open(Sensor::Type /*sensor*/)
|
|||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
void SensorImpl::close()
|
void SensorImpl::close()
|
||||||
{
|
{
|
||||||
// To be implemented
|
// TODO: not implemented
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
Vector3f SensorImpl::update()
|
Vector3f SensorImpl::update()
|
||||||
{
|
{
|
||||||
// To be implemented
|
// TODO: not implemented
|
||||||
return {};
|
return {};
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -78,7 +78,7 @@ Vector3f SensorImpl::update()
|
|||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
void SensorImpl::setEnabled(bool /*enabled*/)
|
void SensorImpl::setEnabled(bool /*enabled*/)
|
||||||
{
|
{
|
||||||
// To be implemented
|
// TODO: not implemented
|
||||||
}
|
}
|
||||||
|
|
||||||
} // namespace sf::priv
|
} // namespace sf::priv
|
||||||
|
@ -33,21 +33,21 @@ namespace sf::priv
|
|||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
void SensorImpl::initialize()
|
void SensorImpl::initialize()
|
||||||
{
|
{
|
||||||
// To be implemented
|
// TODO: not implemented
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
void SensorImpl::cleanup()
|
void SensorImpl::cleanup()
|
||||||
{
|
{
|
||||||
// To be implemented
|
// TODO: not implemented
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
bool SensorImpl::isAvailable(Sensor::Type /*sensor*/)
|
bool SensorImpl::isAvailable(Sensor::Type /*sensor*/)
|
||||||
{
|
{
|
||||||
// To be implemented
|
// TODO: not implemented
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -55,7 +55,7 @@ bool SensorImpl::isAvailable(Sensor::Type /*sensor*/)
|
|||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
bool SensorImpl::open(Sensor::Type /*sensor*/)
|
bool SensorImpl::open(Sensor::Type /*sensor*/)
|
||||||
{
|
{
|
||||||
// To be implemented
|
// TODO: not implemented
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -63,14 +63,14 @@ bool SensorImpl::open(Sensor::Type /*sensor*/)
|
|||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
void SensorImpl::close()
|
void SensorImpl::close()
|
||||||
{
|
{
|
||||||
// To be implemented
|
// TODO: not implemented
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
Vector3f SensorImpl::update()
|
Vector3f SensorImpl::update()
|
||||||
{
|
{
|
||||||
// To be implemented
|
// TODO: not implemented
|
||||||
return {0, 0, 0};
|
return {0, 0, 0};
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -78,7 +78,7 @@ Vector3f SensorImpl::update()
|
|||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
void SensorImpl::setEnabled(bool /*enabled*/)
|
void SensorImpl::setEnabled(bool /*enabled*/)
|
||||||
{
|
{
|
||||||
// To be implemented
|
// TODO: not implemented
|
||||||
}
|
}
|
||||||
|
|
||||||
} // namespace sf::priv
|
} // namespace sf::priv
|
||||||
|
Loading…
Reference in New Issue
Block a user