summaryrefslogtreecommitdiffstats
path: root/kipi-plugins/kameraklient/cameratype.h
diff options
context:
space:
mode:
Diffstat (limited to 'kipi-plugins/kameraklient/cameratype.h')
-rw-r--r--kipi-plugins/kameraklient/cameratype.h53
1 files changed, 53 insertions, 0 deletions
diff --git a/kipi-plugins/kameraklient/cameratype.h b/kipi-plugins/kameraklient/cameratype.h
new file mode 100644
index 0000000..68fef23
--- /dev/null
+++ b/kipi-plugins/kameraklient/cameratype.h
@@ -0,0 +1,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
+