Simpact Cyan
Population based event driven simulation using mNRM
personimpl.h
1 #ifndef PERSONIMPL_H
2 
3 #define PERSONIMPL_H
4 
5 class Person;
6 
7 class PersonImpl
8 {
9 public:
10  PersonImpl(Person &p);
11  ~PersonImpl();
12 private:
13  Person &m_person;
14 };
15 
16 #endif // PERSONIMPL_H
17