X2 Standard
Version 1.24
licensedinterfaces
parkinterface.h
1
#ifndef _ParkInterface_H
2
#define _ParkInterface_H
3
4
#define ParkInterface_Name "com.bisque.TheSkyX.ParkInterface/1.0"
5
16
class
ParkInterface
17
{
18
public
:
19
20
virtual
~
ParkInterface
(){}
21
22
public
:
23
25
virtual
bool
isParked
(
void
) {
return
false
;}
27
virtual
int
startPark
(
const
double
& dAz,
const
double
& dAlt)= 0;
29
virtual
int
isCompletePark
(
bool
& bComplete)
const
= 0;
31
virtual
int
endPark
(
void
) = 0;
32
33
};
34
35
#endif
ParkInterface::endPark
virtual int endPark(void)=0
ParkInterface::isCompletePark
virtual int isCompletePark(bool &bComplete) const =0
ParkInterface
The ParkInterface allows domes and mounts to be parked.
Definition:
parkinterface.h:17
ParkInterface::isParked
virtual bool isParked(void)
Definition:
parkinterface.h:25
ParkInterface::startPark
virtual int startPark(const double &dAz, const double &dAlt)=0
X2 Examples
(C) Software Bisque, Inc. All rights reserved.