2015-07-29 14:19:43 +02:00
|
|
|
#pragma once
|
|
|
|
|
|
2015-11-26 14:01:24 +01:00
|
|
|
|
2015-07-29 14:19:43 +02:00
|
|
|
#include "cafPdmDocument.h"
|
2015-11-26 08:15:28 +01:00
|
|
|
#include "cafPdmChildArrayField.h"
|
2015-11-26 14:01:24 +01:00
|
|
|
#include "cafPdmChildField.h"
|
|
|
|
|
|
|
|
|
|
class TapCvfSpecialization;
|
2015-07-29 14:19:43 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
|
class TapProject : public caf::PdmDocument
|
|
|
|
|
{
|
|
|
|
|
CAF_PDM_HEADER_INIT;
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
TapProject(void);
|
|
|
|
|
virtual ~TapProject(void);
|
|
|
|
|
|
|
|
|
|
caf::PdmChildArrayField< caf::PdmObjectHandle* > m_objectList;
|
|
|
|
|
|
2015-11-26 14:01:24 +01:00
|
|
|
caf::PdmChildField< TapCvfSpecialization* > m_testSpecialization;
|
2015-07-29 14:19:43 +02:00
|
|
|
};
|