13 lines
123 B
C++
13 lines
123 B
C++
|
|
|
||
|
|
#ifndef BD2MODEL_H
|
||
|
|
#define BD2MODEL_H
|
||
|
|
|
||
|
|
class BD2Model : public Model{
|
||
|
|
public:
|
||
|
|
private:
|
||
|
|
struct Rep;
|
||
|
|
Rep *rep;
|
||
|
|
};
|
||
|
|
|
||
|
|
|
||
|
|
#endif
|