~ubuntu-branches/ubuntu/quantal/libindi/quantal

« back to all changes in this revision

Viewing changes to drivers/telescope/synscanmount.h

  • Committer: Bazaar Package Importer
  • Author(s): Rohan Garg, Rohan Garg, Jonathan Riddell, Jonathan Thomas
  • Date: 2011-07-14 18:18:04 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20110714181804-3fybxiy3tpjnk9kq
Tags: 0.8-0ubuntu1
[ Rohan Garg ]
* New upstream release
  - Add boost to build deps
  - Bump soversion to 0.8

[ Jonathan Riddell ]
* Use source format 3.0
* Add kubuntu_01_link_pthreads.diff to fix linking with pthreads

[ Jonathan Thomas ]
* Change Maintainer from MOTU to Ubuntu Developers

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*******************************************************************************
 
2
  Copyright(c) 2010 Gerry Rozema. All rights reserved.
 
3
 
 
4
  This program is free software; you can redistribute it and/or modify it
 
5
  under the terms of the GNU General Public License as published by the Free
 
6
  Software Foundation; either version 2 of the License, or (at your option)
 
7
  any later version.
 
8
 
 
9
  This program is distributed in the hope that it will be useful, but WITHOUT
 
10
  ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 
11
  FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
 
12
  more details.
 
13
 
 
14
  You should have received a copy of the GNU General Public License along with
 
15
  this program; if not, write to the Free Software Foundation, Inc., 59
 
16
  Temple Place - Suite 330, Boston, MA  02111-1307, USA.
 
17
 
 
18
  The full GNU General Public License is included in this distribution in the
 
19
  file called LICENSE.
 
20
*******************************************************************************/
 
21
 
 
22
#ifndef SYNSCANMOUNT_H
 
23
#define SYNSCANMOUNT_H
 
24
 
 
25
#include "indibase/inditelescope.h"
 
26
 
 
27
 
 
28
class SynscanMount : public INDI::Telescope
 
29
{
 
30
    protected:
 
31
    private:
 
32
    public:
 
33
        SynscanMount();
 
34
        virtual ~SynscanMount();
 
35
 
 
36
        //  overrides of base class virtual functions
 
37
        bool initProperties();
 
38
        void ISGetProperties (const char *dev);
 
39
        const char *getDefaultName();
 
40
 
 
41
        bool ReadScopeStatus();
 
42
        bool Goto(double,double);
 
43
        bool Park();
 
44
 
 
45
 
 
46
};
 
47
 
 
48
#endif // SYNSCANMOUNT_H