Skip to content

Commit 52f37ad

Browse files
committed
(docs) Replace lingering dep references
1 parent 45247ca commit 52f37ad

File tree

4 files changed

+63
-63
lines changed

4 files changed

+63
-63
lines changed

graph/include/vc/graph.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
namespace volcart
1212
{
1313

14-
/** @brief Register all VC provided nodes with the Smeagol library */
14+
/** @brief Register all VC provided nodes with the smgl library */
1515
void RegisterNodes();
1616

1717
} // namespace volcart

graph/include/vc/graph/core.hpp

Lines changed: 26 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -43,11 +43,11 @@ class LoadVolumePkgNode : public smgl::Node
4343
LoadVolumePkgNode();
4444

4545
private:
46-
/** Smeagol custom serialization */
46+
/** smgl custom serialization */
4747
auto serialize_(bool /*useCache*/, const filesystem::path& /*cacheDir*/)
4848
-> smgl::Metadata override;
4949

50-
/** Smeagol custom deserialization */
50+
/** smgl custom deserialization */
5151
void deserialize_(
5252
const smgl::Metadata& meta,
5353
const filesystem::path& /*cacheDir*/) override;
@@ -105,11 +105,11 @@ class VolumeSelectorNode : public smgl::Node
105105
VolumeSelectorNode();
106106

107107
private:
108-
/** Smeagol custom serialization */
108+
/** smgl custom serialization */
109109
auto serialize_(bool /*useCache*/, const filesystem::path& /*cacheDir*/)
110110
-> smgl::Metadata override;
111111

112-
/** Smeagol custom deserialization */
112+
/** smgl custom deserialization */
113113
void deserialize_(
114114
const smgl::Metadata& meta,
115115
const filesystem::path& /*cacheDir*/) override;
@@ -150,11 +150,11 @@ class VolumePropertiesNode : public smgl::Node
150150
VolumePropertiesNode();
151151

152152
private:
153-
/** Smeagol custom serialization */
153+
/** smgl custom serialization */
154154
auto serialize_(bool /*useCache*/, const filesystem::path& /*cacheDir*/)
155155
-> smgl::Metadata override;
156156

157-
/** Smeagol custom deserialization */
157+
/** smgl custom deserialization */
158158
void deserialize_(
159159
const smgl::Metadata& meta,
160160
const filesystem::path& /*cacheDir*/) override;
@@ -187,11 +187,11 @@ class SegmentationSelectorNode : public smgl::Node
187187
SegmentationSelectorNode();
188188

189189
private:
190-
/** Smeagol custom serialization */
190+
/** smgl custom serialization */
191191
auto serialize_(bool /*useCache*/, const filesystem::path& /*cacheDir*/)
192192
-> smgl::Metadata override;
193193

194-
/** Smeagol custom deserialization */
194+
/** smgl custom deserialization */
195195
void deserialize_(
196196
const smgl::Metadata& meta,
197197
const filesystem::path& /*cacheDir*/) override;
@@ -273,11 +273,11 @@ class LoadMeshNode : public smgl::Node
273273
LoadMeshNode();
274274

275275
private:
276-
/** Smeagol custom serialization */
276+
/** smgl custom serialization */
277277
auto serialize_(bool useCache, const filesystem::path& cacheDir)
278278
-> smgl::Metadata override;
279279

280-
/** Smeagol custom deserialization */
280+
/** smgl custom deserialization */
281281
void deserialize_(
282282
const smgl::Metadata& meta,
283283
const filesystem::path& /*cacheDir*/) override;
@@ -319,11 +319,11 @@ class WriteMeshNode : public smgl::Node
319319
WriteMeshNode();
320320

321321
private:
322-
/** Smeagol custom serialization */
322+
/** smgl custom serialization */
323323
auto serialize_(bool useCache, const filesystem::path& cacheDir)
324324
-> smgl::Metadata override;
325325

326-
/** Smeagol custom deserialization */
326+
/** smgl custom deserialization */
327327
void deserialize_(
328328
const smgl::Metadata& meta,
329329
const filesystem::path& /*cacheDir*/) override;
@@ -360,11 +360,11 @@ class RotateUVMapNode : public smgl::Node
360360
RotateUVMapNode();
361361

362362
private:
363-
/** Smeagol custom serialization */
363+
/** smgl custom serialization */
364364
auto serialize_(bool useCache, const filesystem::path& cacheDir)
365365
-> smgl::Metadata override;
366366

367-
/** Smeagol custom deserialization */
367+
/** smgl custom deserialization */
368368
void deserialize_(
369369
const smgl::Metadata& meta, const filesystem::path& cacheDir) override;
370370
};
@@ -400,11 +400,11 @@ class FlipUVMapNode : public smgl::Node
400400
FlipUVMapNode();
401401

402402
private:
403-
/** Smeagol custom serialization */
403+
/** smgl custom serialization */
404404
auto serialize_(bool useCache, const filesystem::path& cacheDir)
405405
-> smgl::Metadata override;
406406

407-
/** Smeagol custom deserialization */
407+
/** smgl custom deserialization */
408408
void deserialize_(
409409
const smgl::Metadata& meta, const filesystem::path& cacheDir) override;
410410
};
@@ -480,11 +480,11 @@ class PlotUVMapNode : public smgl::Node
480480
PlotUVMapNode();
481481

482482
private:
483-
/** Smeagol custom serialization */
483+
/** smgl custom serialization */
484484
auto serialize_(bool useCache, const filesystem::path& cacheDir)
485485
-> smgl::Metadata override;
486486

487-
/** Smeagol custom deserialization */
487+
/** smgl custom deserialization */
488488
void deserialize_(
489489
const smgl::Metadata& meta, const filesystem::path& cacheDir) override;
490490
};
@@ -517,11 +517,11 @@ class LoadImageNode : public smgl::Node
517517
LoadImageNode();
518518

519519
private:
520-
/** Smeagol custom serialization */
520+
/** smgl custom serialization */
521521
auto serialize_(bool useCache, const filesystem::path& cacheDir)
522522
-> smgl::Metadata override;
523523

524-
/** Smeagol custom deserialization */
524+
/** smgl custom deserialization */
525525
void deserialize_(
526526
const smgl::Metadata& meta,
527527
const filesystem::path& /*cacheDir*/) override;
@@ -641,11 +641,11 @@ class LoadPPMNode : public smgl::Node
641641
LoadPPMNode();
642642

643643
private:
644-
/** Smeagol custom serialization */
644+
/** smgl custom serialization */
645645
auto serialize_(bool useCache, const filesystem::path& cacheDir)
646646
-> smgl::Metadata override;
647647

648-
/** Smeagol custom deserialization */
648+
/** smgl custom deserialization */
649649
void deserialize_(
650650
const smgl::Metadata& meta,
651651
const filesystem::path& /*cacheDir*/) override;
@@ -679,11 +679,11 @@ class WritePPMNode : public smgl::Node
679679
WritePPMNode();
680680

681681
private:
682-
/** Smeagol custom serialization */
682+
/** smgl custom serialization */
683683
auto serialize_(bool useCache, const filesystem::path& cacheDir)
684684
-> smgl::Metadata override;
685685

686-
/** Smeagol custom deserialization */
686+
/** smgl custom deserialization */
687687
void deserialize_(
688688
const smgl::Metadata& meta,
689689
const filesystem::path& /*cacheDir*/) override;
@@ -744,11 +744,11 @@ class LoadVolumetricMaskNode : public smgl::Node
744744
LoadVolumetricMaskNode();
745745

746746
private:
747-
/** Smeagol custom serialization */
747+
/** smgl custom serialization */
748748
auto serialize_(bool useCache, const filesystem::path& cacheDir)
749749
-> smgl::Metadata override;
750750

751-
/** Smeagol custom deserialization */
751+
/** smgl custom deserialization */
752752
void deserialize_(
753753
const smgl::Metadata& meta,
754754
const filesystem::path& /*cacheDir*/) override;

graph/include/vc/graph/meshing.hpp

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -43,11 +43,11 @@ class MeshingNode : public smgl::Node
4343
MeshingNode();
4444

4545
private:
46-
/** Smeagol custom serialization */
46+
/** smgl custom serialization */
4747
auto serialize_(bool useCache, const filesystem::path& cacheDir)
4848
-> smgl::Metadata override;
4949

50-
/** Smeagol custom deserialization */
50+
/** smgl custom deserialization */
5151
void deserialize_(
5252
const smgl::Metadata& meta, const filesystem::path& cacheDir) override;
5353
};
@@ -80,11 +80,11 @@ class ScaleMeshNode : public smgl::Node
8080
ScaleMeshNode();
8181

8282
private:
83-
/** Smeagol custom serialization */
83+
/** smgl custom serialization */
8484
auto serialize_(bool useCache, const filesystem::path& cacheDir)
8585
-> smgl::Metadata override;
8686

87-
/** Smeagol custom deserialization */
87+
/** smgl custom deserialization */
8888
void deserialize_(
8989
const smgl::Metadata& meta, const filesystem::path& cacheDir) override;
9090
};
@@ -131,11 +131,11 @@ class CalculateNumVertsNode : public smgl::Node
131131
CalculateNumVertsNode();
132132

133133
private:
134-
/** Smeagol custom serialization */
134+
/** smgl custom serialization */
135135
auto serialize_(bool /*useCache*/, const filesystem::path& /*cacheDir*/)
136136
-> smgl::Metadata override;
137137

138-
/** Smeagol custom deserialization */
138+
/** smgl custom deserialization */
139139
void deserialize_(
140140
const smgl::Metadata& meta,
141141
const filesystem::path& /*cacheDir*/) override;
@@ -166,11 +166,11 @@ class LaplacianSmoothMeshNode : public smgl::Node
166166
LaplacianSmoothMeshNode();
167167

168168
private:
169-
/** Smeagol custom serialization */
169+
/** smgl custom serialization */
170170
auto serialize_(bool useCache, const filesystem::path& cacheDir)
171171
-> smgl::Metadata override;
172172

173-
/** Smeagol custom deserialization */
173+
/** smgl custom deserialization */
174174
void deserialize_(
175175
const smgl::Metadata& meta, const filesystem::path& cacheDir) override;
176176
};
@@ -214,11 +214,11 @@ class ResampleMeshNode : public smgl::Node
214214
ResampleMeshNode();
215215

216216
private:
217-
/** Smeagol custom serialization */
217+
/** smgl custom serialization */
218218
auto serialize_(bool useCache, const filesystem::path& cacheDir)
219219
-> smgl::Metadata override;
220220

221-
/** Smeagol custom deserialization */
221+
/** smgl custom deserialization */
222222
void deserialize_(
223223
const smgl::Metadata& meta, const filesystem::path& cacheDir) override;
224224
};
@@ -253,11 +253,11 @@ class UVMapToMeshNode : public smgl::Node
253253
UVMapToMeshNode();
254254

255255
private:
256-
/** Smeagol custom serialization */
256+
/** smgl custom serialization */
257257
auto serialize_(bool useCache, const filesystem::path& cacheDir)
258258
-> smgl::Metadata override;
259259

260-
/** Smeagol custom deserialization */
260+
/** smgl custom deserialization */
261261
void deserialize_(
262262
const smgl::Metadata& meta, const filesystem::path& cacheDir) override;
263263
};
@@ -295,11 +295,11 @@ class OrientNormalsNode : public smgl::Node
295295
OrientNormalsNode();
296296

297297
private:
298-
/** Smeagol custom serialization */
298+
/** smgl custom serialization */
299299
auto serialize_(bool useCache, const filesystem::path& cacheDir)
300300
-> smgl::Metadata override;
301301

302-
/** Smeagol custom deserialization */
302+
/** smgl custom deserialization */
303303
void deserialize_(
304304
const smgl::Metadata& meta, const filesystem::path& cacheDir) override;
305305
};

0 commit comments

Comments
 (0)