#include "vtkImageAlgorithm.h"
#include "vtkImageData.h"
#include "vtkInfovisCoreModule.h"
#include "vtkSmartPointer.h"
#include <array>
#include <functional>
#include <set>
#include <string>
#include <vector>
Go to the source code of this file.
◆ SetStdContainerMacro
#define SetStdContainerMacro |
( |
|
name, |
|
|
|
container |
|
) |
| |
Value: virtual void Set##name(container arg) \
{ \
bool changed = false; \
if (arg.size() != name.size()) \
{ \
changed = true; \
} \
else \
{ \
auto a = arg.begin(); \
for (auto r : name) \
{ \
if (*a != r) \
{ \
changed = true; \
} \
a++; \
} \
} \
if (changed) \
{ \
this->Modified(); \
} \
}
Definition at line 221 of file vtkWordCloud.h.