summaryrefslogtreecommitdiffstats
path: root/kipi-plugins/kameraklient/cameratype.h
blob: 68fef23a71deeed47a29606c780ffb3f06387f1a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
/* ============================================================
 * File  : cameratype.h
 * Author: Renchi Raju <renchi@pooh.tam.uiuc.edu>
 * Date  : 2003-01-29
 * Description : 
 * 
 * Copyright 2003 by Renchi Raju <renchi@pooh.tam.uiuc.edu>

 * This program is free software; you can redistribute it
 * and/or modify it under the terms of the GNU General
 * Public License as published by the Free Software Foundation;
 * either version 2, or (at your option)
 * any later version.
 * 
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 * 
 * ============================================================ */

#ifndef CAMERATYPE_H
#define CAMERATYPE_H

#include <qstring.h>

namespace KIPIKameraKlientPlugin
{

class CameraType {
    public:
	CameraType();
	CameraType(const QString& model, const QString& port);
	~CameraType();
	CameraType(const CameraType& ctype);
	CameraType& operator=(const CameraType& type);
	void setModel(const QString& model);
	void setPort(const QString& port);
	void setValid(bool valid);
	QString model() const;
	QString port()  const;
	bool valid();

    private:
	QString model_;
	QString port_;
	bool    valid_;
};

}  // NameSpace KIPIKameraKlientPlugin

#endif