00001 // Copyright (c) 1998-2014 by Tech Soft 3D, Inc. 00002 // 00003 // The information contained herein is confidential and proprietary to Tech Soft 3D, Inc., 00004 // and considered a trade secret as defined under civil and criminal statutes. 00005 // Tech Soft 3D, Inc. shall pursue its civil and criminal remedies in the event of 00006 // unauthorized use or misappropriation of its trade secrets. Use of this information 00007 // by anyone other than authorized employees of Tech Soft 3D, Inc. is granted only under 00008 // a written non-disclosure agreement, expressly prescribing the scope and manner of such use. 00009 00010 #pragma once 00011 00012 #include "GeometryImporter.h" 00013 00014 class GeometryImporter3DF : public GeometryImporter 00015 { 00016 public: 00017 GeometryImporter3DF(StyleRepository& styleRepository, VisibilityChecker& visibilityChecker, InheritanceManager& inheritanceManager); 00018 00019 private: 00020 virtual CurvesImporter * CreateCurvesImporter(SegmentOrganizer & segmentOrganizer); 00021 virtual PolylinesImporter * CreatePolylinesImporter(SegmentOrganizer & segmentOrganizer); 00022 virtual LinesImporter * CreateLinesImporter(SegmentOrganizer & segmentOrganizer); 00023 virtual SegmentOrganizer * CreateSegmentOrganizer(StyleRepository& styleRepository, VisibilityChecker& visibilityChecker); 00024 virtual ShellImporter * CreateShellImporter(SegmentOrganizer& segmentOrganizer, TextureWriter& textureWriter, InheritanceManager& inheritanceManager); 00025 virtual ImageTexturedShellImporter * CreateImageTexturedShellImporter(SegmentOrganizer& segmentOrganizer, ImageRepository& imageRepository, TextureRepository& textureRepository); 00026 }; 00027