| [504] | 1 | /*******************************************************************************
|
|---|
| 2 | Copyright(c) 2010 Gerry Rozema. All rights reserved.
|
|---|
| 3 |
|
|---|
| [642] | 4 | This library is free software; you can redistribute it and/or
|
|---|
| 5 | modify it under the terms of the GNU Library General Public
|
|---|
| 6 | License version 2 as published by the Free Software Foundation.
|
|---|
| [504] | 7 |
|
|---|
| [642] | 8 | This library is distributed in the hope that it will be useful,
|
|---|
| 9 | but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|---|
| 10 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|---|
| 11 | Library General Public License for more details.
|
|---|
| [504] | 12 |
|
|---|
| [642] | 13 | You should have received a copy of the GNU Library General Public License
|
|---|
| 14 | along with this library; see the file COPYING.LIB. If not, write to
|
|---|
| 15 | the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
|---|
| 16 | Boston, MA 02110-1301, USA.
|
|---|
| [504] | 17 | *******************************************************************************/
|
|---|
| 18 |
|
|---|
| 19 | #ifndef SYNSCANMOUNT_H
|
|---|
| 20 | #define SYNSCANMOUNT_H
|
|---|
| 21 |
|
|---|
| 22 | #include "indibase/inditelescope.h"
|
|---|
| 23 |
|
|---|
| 24 |
|
|---|
| 25 | class SynscanMount : public INDI::Telescope
|
|---|
| 26 | {
|
|---|
| 27 | protected:
|
|---|
| 28 | private:
|
|---|
| 29 | public:
|
|---|
| 30 | SynscanMount();
|
|---|
| 31 | virtual ~SynscanMount();
|
|---|
| 32 |
|
|---|
| 33 | // overrides of base class virtual functions
|
|---|
| 34 | bool initProperties();
|
|---|
| 35 | void ISGetProperties (const char *dev);
|
|---|
| 36 | const char *getDefaultName();
|
|---|
| 37 |
|
|---|
| [642] | 38 | //virtual bool Connect() {return true;}
|
|---|
| [504] | 39 | bool ReadScopeStatus();
|
|---|
| 40 | bool Goto(double,double);
|
|---|
| 41 | bool Park();
|
|---|
| 42 |
|
|---|
| 43 |
|
|---|
| 44 | };
|
|---|
| 45 |
|
|---|
| 46 | #endif // SYNSCANMOUNT_H
|
|---|