| 47 | \*---------------------------------------------------------------------------*/ |
| 48 | |
| 49 | class pointSet |
| 50 | : |
| 51 | public topoSet |
| 52 | { |
| 53 | |
| 54 | |
| 55 | public: |
| 56 | |
| 57 | //- Runtime type information |
| 58 | TypeName("pointSet"); |
| 59 | |
| 60 | |
| 61 | // Constructors |
| 62 | |
| 63 | |
| 64 | //- Construct from IOobject |
| 65 | pointSet(const IOobject& obj); |
| 66 | |
| 67 | //- Construct from objectRegistry and name |
| 68 | pointSet |
| 69 | ( |
| 70 | const polyMesh& mesh, |
| 71 | const word& name, |
| 72 | readOption r=MUST_READ, |
| 73 | writeOption w=NO_WRITE |
| 74 | ); |
| 75 | |
| 76 | //- Construct from additional size of labelHashSet |
| 77 | pointSet |
| 78 | ( |
| 79 | const polyMesh& mesh, |
| 80 | const word& name, |
| 81 | const label, |
| 82 | writeOption w=NO_WRITE |
| 83 | ); |
| 84 | |
| 85 | //- Construct from additional labelHashSet |
| 86 | pointSet |
| 87 | ( |
| 88 | const polyMesh& mesh, |
| 89 | const word& name, |
| 90 | const topoSet&, |
| 91 | writeOption w=NO_WRITE |
| 92 | ); |
| 93 | |
| 94 | //- Construct from additional labelHashSet |
| 95 | pointSet |
| 96 | ( |
| 97 | const polyMesh& mesh, |
| 98 | const word& name, |
| 99 | const labelHashSet&, |
| 100 | writeOption w=NO_WRITE |
| 101 | ); |
| 102 | |
| 103 | |
| 104 | //- Destructor |
| 105 | virtual ~pointSet(); |
| 106 | |