Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
draftsight / opt / dassault-systemes / DraftSight / APISDK / headers / cpp / dsInterfaceDefs.h
Size: Mime:
//========================================================================//
//							SOURCE CODE LICENSE							  //
//  Copyright 2012 Dassault Systèmes SolidWorks Corporation               //
//  All rights reserved.                                                  //
//  This software and related documentation are proprietary to            // 
//  Dassault Systèmes SolidWorks Corporation                              //
//========================================================================//
// dsInterfaceDefs.h interface definitions
//

#pragma once

#define DECLARE_DSCPP_INTERFACE(DSCLASS) \
public: \
    friend class DSCLASS##_p; \
	DSCLASS##_c(DSCLASS##_c *sourceObj); \
	~DSCLASS##_c(); \
	DSCLASS *getDsObjectP() const; \
protected: \
	DSCLASS##_p *getPIMPL() const; \
private: \
	DSCLASS##_c(dsObject *parent); \
	DSCLASS##_p *m_p;