Code Search for Developers
 
 
  

CModulePrefixSuffix.h from osgDesigner at Krugle


Show CModulePrefixSuffix.h syntax highlighted

#ifndef __CMODULEPREFIXSUFFIX_H__
#define __CMODULEPREFIXSUFFIX_H__ 1

namespace osgDesigner
{
    class CModulePrefixSuffix
    {
        public :
         
            static const char * suffix()
            {
                #if defined(WIN32)
                     #ifdef __CYGWIN__
                        return (".dll");
                    #elif defined(__MINGW32__)
                        suffix = ".dll";
                    #else
                        #ifdef _DEBUG
                            return ("d.dll");
                        #else
                            return (".dll");
                        #endif
                    #endif
                #elif macintosh
                    return ("");
                #elif defined(__hpux__)
                    return (".sl");
                #else
                    return (".so");
                #endif
            }
            
            static const char * prefix()
            {
                return ("osgDesigner");
            }
    };
}

#endif /*CMODULEPREFIXSUFFIX_H_*/




See more files for this project here

osgDesigner

osgDesigner is a graphical tool used to modify an OpenSceneGraph (OSG) scene using the osgIntrospection framework. OpenSceneGraph developpers will be able to extend osgDesigner at need using (editor | render | osgIntrospection wrapper) plugin system.

Project homepage: http://sourceforge.net/projects/osgdesigner
Programming language(s): C++,Shell Script
License: other

  CModulePrefixSuffix.h
  DynamicLibrary.h
  IEditorPluginABC.h
  IEditorPluginDescABC.h
  IEditorPluginWidgetABC.h
  IPluginDescABC.h
  IRenderPluginABC.h
  IRenderPluginDescABC.h
  SEditorPluginManager.h
  SEditorPluginRegistry.h
  SRenderPluginManager.h
  SRenderPluginRegistry.h
  TPluginManagerProxy.h