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(); 13 OmapCard(const std::string& device); 14 virtual ~OmapCard(); 15 16 struct omap_device* dev() const { return m_omap_dev; } 17 18 private: 19 struct omap_device* m_omap_dev; 20 }; 21 } 22