/usr/include/libindi/alignment/AlignmentSubsystemForMathPlugins.h is in libindi-dev 1.2.0-3.
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 19 20 21 22 23 24 25 26 | #ifndef INDI_ALIGNMENTSUBSYSTEM_ALIGNMENTSUBSYSTEMFORMATHPLUGINS_H
#define INDI_ALIGNMENTSUBSYSTEM_ALIGNMENTSUBSYSTEMFORMATHPLUGINS_H
#include "MathPlugin.h"
#include "InMemoryDatabase.h"
#include "TelescopeDirectionVectorSupportFunctions.h"
namespace INDI {
namespace AlignmentSubsystem {
/*!
* \class AlignmentSubsystemForMathPlugins
* \brief This class encapsulates all the alignment subsystem classes that are useful to math plugin implementations.
* Math plugins should inherit from this class.
*/
class AlignmentSubsystemForMathPlugins : public MathPlugin, public TelescopeDirectionVectorSupportFunctions
{
public:
/// \brief Virtual destructor
virtual ~AlignmentSubsystemForMathPlugins() {}
};
} // namespace AlignmentSubsystem
} // namespace INDI
#endif // INDI_ALIGNMENTSUBSYSTEM_ALIGNMENTSUBSYSTEMFORMATHPLUGINS_H
|