Branch data Line data Source code
1 : : //-------------------------------------------------------------------------
2 : : // Filename : CompositeShell.hpp
3 : : //
4 : : // Purpose : ShellSM used in composite TopologyBridge graph
5 : : //
6 : : // Special Notes :
7 : : //
8 : : // Creator : Jason Kraftcheck
9 : : //
10 : : // Creation Date : 01/11/02
11 : : //-------------------------------------------------------------------------
12 : :
13 : : #ifndef COMPOSITE_SHELL_HPP
14 : : #define COMPOSITE_SHELL_HPP
15 : :
16 : : #include "VGDefines.h"
17 : : #include "ShellSM.hpp"
18 : :
19 : : class CompositeSurface;
20 : : class CompositeCoSurf;
21 : : class CompositeLump;
22 : :
23 : : class CompositeShell : public ShellSM
24 : : {
25 : : friend class CompositeLump;
26 : : public:
27 : :
28 : : CompositeShell();
29 : : virtual ~CompositeShell();
30 : :
31 : : CompositeLump* get_lump() const;
32 : :
33 : : CompositeShell* next_shell() const;
34 : :
35 : : CompositeCoSurf* first_co_surf( ) const;
36 : : CompositeCoSurf* next_co_surf( CompositeCoSurf* prev ) const;
37 : :
38 : : CubitStatus add( CompositeCoSurf* cosurf );
39 : : CubitStatus remove( CompositeCoSurf* cosurf );
40 : :
41 : : CompositeCoSurf* add( CompositeSurface* surface, CubitSense sense );
42 : : // create a CoSurf
43 : : CompositeCoSurf* find_first( const CompositeSurface* surface ) const;
44 : : // find first CoSurf with the passed surface
45 : : CompositeCoSurf* find_next( const CompositeCoSurf* prev ) const;
46 : : // find next CoSurf with the same surface
47 : : CubitSense find_sense( const CompositeSurface* surface ) const;
48 : : // returns CUBIT_UNKNOWN if multiple CoSurfs
49 : :
50 : : void append_simple_attribute_virt( const CubitSimpleAttrib& simple_attrib_ptr );
51 : : void remove_simple_attribute_virt( const CubitSimpleAttrib& simple_attrib_ptr );
52 : : void remove_all_simple_attribute_virt();
53 : : CubitStatus get_simple_attribute( DLIList<CubitSimpleAttrib>& attrib_list );
54 : : CubitStatus get_simple_attribute( const CubitString& name,
55 : : DLIList<CubitSimpleAttrib>& attrib_list );
56 : :
57 : : void get_parents_virt( DLIList<TopologyBridge*>& parents );
58 : : void get_children_virt( DLIList<TopologyBridge*>& children );
59 : : GeometryQueryEngine* get_geometry_query_engine() const;
60 : 0 : int layer() const { return COMPOSITE_LAYER; }
61 : :
62 : : void print_debug_info( const char* line_prefix = 0 );
63 : :
64 : : private:
65 : :
66 : : CompositeLump* myLump;
67 : : CompositeShell* lumpNext;
68 : :
69 : : CompositeCoSurf* firstCoSurf;
70 : : };
71 : :
72 : 0 : inline CompositeLump* CompositeShell::get_lump() const
73 : 0 : { return myLump; }
74 : :
75 : 0 : inline CompositeCoSurf* CompositeShell::first_co_surf() const
76 : 0 : { return firstCoSurf; }
77 : :
78 : :
79 : : #endif
|