source: BAORadio/libindi/libindi/drivers/filter_wheel/filter_simulator.h @ 504

Last change on this file since 504 was 504, checked in by frichard, 13 years ago

-Version 0.8 de libini
-Formule de Marc
-Nouvelles fonctionnalités (goto nom-de l'objet etc...)

File size: 1.4 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 FILTERSIM_H
23#define FILTERSIM_H
24
25#include "indibase/indifilterwheel.h"
26
27class FilterSim : public INDI::FilterWheel
28{
29    protected:
30    private:
31    public:
32        FilterSim();
33        virtual ~FilterSim();
34
35        const char *getDefaultName();
36
37        bool Connect();
38        bool Disconnect();
39        int SelectFilter(int);
40        void TimerHit();
41
42};
43
44#endif // FILTERSIM_H
Note: See TracBrowser for help on using the repository browser.