GeometryImporter3DF.h
1 // Copyright (c) Tech Soft 3D
2 //
3 // The information contained herein is confidential and proprietary to Tech Soft 3D, Inc.,
4 // and considered a trade secret as defined under civil and criminal statutes.
5 // Tech Soft 3D, Inc. shall pursue its civil and criminal remedies in the event of
6 // unauthorized use or misappropriation of its trade secrets. Use of this information
7 // by anyone other than authorized employees of Tech Soft 3D, Inc. is granted only under
8 // a written non-disclosure agreement, expressly prescribing the scope and manner of such use.
9 
10 #pragma once
11 
12 #include "GeometryImporter.h"
13 
14 class GeometryImporter3DF : public GeometryImporter
15 {
16 public:
17  GeometryImporter3DF(StyleRepository& styleRepository, VisibilityChecker& visibilityChecker, InheritanceManager& inheritanceManager);
18 
19 private:
20  virtual CurvesImporter * CreateCurvesImporter(SegmentOrganizer & segmentOrganizer);
21  virtual PolylinesImporter * CreatePolylinesImporter(SegmentOrganizer & segmentOrganizer);
22  virtual LinesImporter * CreateLinesImporter(SegmentOrganizer & segmentOrganizer);
23  virtual SegmentOrganizer * CreateSegmentOrganizer(StyleRepository& styleRepository, VisibilityChecker& visibilityChecker);
24  virtual ShellImporter * CreateShellImporter(SegmentOrganizer& segmentOrganizer, TextureWriter& textureWriter, InheritanceManager& inheritanceManager);
25  virtual ImageTexturedShellImporter * CreateImageTexturedShellImporter(SegmentOrganizer& segmentOrganizer, ImageRepository& imageRepository, TextureRepository& textureRepository);
26 };
27 
Definition: GeometryImporter3DF.h:14