You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#ifndef _GYROSCOPE_HPP_
|
|
#define _GYROSCOPE_HPP_
|
|
|
|
#include <memory>
|
|
|
|
class Gyroscope
|
|
{
|
|
public:
|
|
Gyroscope();
|
|
~Gyroscope();
|
|
|
|
void getOrientation();
|
|
|
|
private:
|
|
class GyroscopeImpl; // forward declaration
|
|
std::unique_ptr<GyroscopeImpl> impl;
|
|
|
|
};
|
|
|
|
|
|
#endif // _GYROSCOPE_HPP_
|