Skip to content

Commit bfab28c

Browse files
committed
Remove unnecessary comments
1 parent 27e3620 commit bfab28c

File tree

1 file changed

+0
-12
lines changed

1 file changed

+0
-12
lines changed

src/Modules/Legacy/Fields/GenerateNodeNormals.h

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -26,42 +26,30 @@
2626
*/
2727

2828

29-
// makes sure that headers aren't loaded multiple times.
30-
// This requires the string to be unique to this file.
31-
// standard convention incorporates the file path and filename.
3229
#ifndef MODULES_FIELDS_GenerateNodeNormals_H
3330
#define MODULES_FIELDS_GenerateNodeNormals_H
3431

3532
#include <Dataflow/Network/Module.h>
3633
#include <Modules/Legacy/Fields/share.h>
37-
// share.h must be the last include, or it will not build on windows systems.
3834

3935
namespace SCIRun {
4036
namespace Modules {
4137
namespace Fields {
42-
// this final namespace needs to match the .module file
43-
// in src/Modules/Factory/Config/
4438

45-
// define module ports.
46-
// Can have any number of ports (including none), and dynamic ports.
4739
class SCISHARE GenerateNodeNormals : public SCIRun::Dataflow::Networks::Module,
4840
public Has1OutputPort<FieldPortTag>,
4941
public Has2InputPorts<FieldPortTag, FieldPortTag>
5042
{
5143
public:
52-
// these functions are required for all modules
5344
GenerateNodeNormals();
5445

5546
virtual void execute();
5647
virtual void setStateDefaults(){}
5748

58-
//name the ports and datatype.
5949
INPUT_PORT(0, InputField, Field);
6050
INPUT_PORT(1, InputPoint, Field);
6151
OUTPUT_PORT(0, OutputField, Field);
6252

63-
// this is needed for the module factory
64-
// the arguments of this function could vary as NoAlgoOrUI or ModuleHasUIAndAlgorithm
6553
MODULE_TRAITS_AND_INFO(NoAlgoOrUI)
6654
};
6755
}}}

0 commit comments

Comments
 (0)