--- /dev/null
+// Copyright (C) 2014-20xx CEA/DEN, EDF R&D
+
+// File: GeomAPI_ICustomPrs.cpp
+// Created: 11 Dec 2014
+// Author: Vitaly SMETANNIKOV
+
+#include <GeomAPI_ICustomPrs.h>
+
+GeomAPI_ICustomPrs::~GeomAPI_ICustomPrs()
+{
+
+}
#ifndef GeomAPI_ICustomPrs_H
#define GeomAPI_ICustomPrs_H
+#include "GeomAPI.h"
#include "GeomAPI_AISObject.h"
/**
class GeomAPI_ICustomPrs
{
public:
+ GEOMAPI_EXPORT virtual ~GeomAPI_ICustomPrs();
+
/// Modifies the given presentation in the custom way.
virtual void customisePresentation(AISObjectPtr thePrs) = 0;
};
typedef std::shared_ptr<GeomAPI_ICustomPrs> GeomCustomPrsPtr;
-#endif
\ No newline at end of file
+#endif