source: BAORadio/libindi/libindi/drivers/telescope/synscanmount.h @ 642

Last change on this file since 642 was 642, checked in by frichard, 12 years ago

-Alignement des antennes
-Version 0.0.9 de libindi

File size: 1.4 KB
Line 
1/*******************************************************************************
2  Copyright(c) 2010 Gerry Rozema. All rights reserved.
3
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.
7
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.
12
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.
17*******************************************************************************/
18
19#ifndef SYNSCANMOUNT_H
20#define SYNSCANMOUNT_H
21
22#include "indibase/inditelescope.h"
23
24
25class 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
38        //virtual bool Connect() {return true;}
39        bool ReadScopeStatus();
40        bool Goto(double,double);
41        bool Park();
42
43
44};
45
46#endif // SYNSCANMOUNT_H
Note: See TracBrowser for help on using the repository browser.