2014-01-31 08:23:00 +13:00
|
|
|
|
|
|
|
|
#ifndef BD2MODEL_H
|
|
|
|
|
#define BD2MODEL_H
|
|
|
|
|
|
2019-01-18 17:04:17 +01:00
|
|
|
class BD2Model : public Model {
|
|
|
|
|
public:
|
|
|
|
|
private:
|
2014-01-31 08:23:00 +13:00
|
|
|
struct Rep;
|
2019-01-18 17:04:17 +01:00
|
|
|
Rep* rep;
|
2014-01-31 08:23:00 +13:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
#endif
|