File indexing completed on 2024-11-24 05:05:28
0001 #ifndef PRJWHEEL_H 0002 #define PRJWHEEL_H 0003 0004 namespace Codethink { 0005 namespace prjvhc { 0006 0007 class Wheel{ 0008 public: 0009 Wheel(); 0010 ~Wheel(); 0011 0012 void setBrand(char const *brandName); 0013 private: 0014 char const *m_brandName; 0015 }; 0016 0017 } 0018 } 0019 #endif