1 #pragma once
2 
3 #include <kms++/card.h>
4 
5 struct omap_device;
6 
7 namespace kms
8 {
9 class OmapCard : public Card
10 {
11 public:
12 	OmapCard(const std::string& device = "");
13 	virtual ~OmapCard();
14 
dev()15 	struct omap_device* dev() const { return m_omap_dev; }
16 
17 private:
18 	struct omap_device* m_omap_dev;
19 };
20 } // namespace kms
21