|
Last change
on this file since 528 was 504, checked in by frichard, 14 years ago |
|
-Version 0.8 de libini
-Formule de Marc
-Nouvelles fonctionnalités (goto nom-de l'objet etc...)
|
|
File size:
1.5 KB
|
| Line | |
|---|
| 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
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.