#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();                                                                        \
      {                                                                                            \
        if (*a != r)                                                                               \
        {                                                                                          \
          changed = true;                                                                          \
        }                                                                                          \
        a++;                                                                                       \
      }                                                                                            \
    }                                                                                              \
    if (changed)                                                                                   \
    {                                                                                              \
      name = arg;                                                                                  \
      this->Modified();                                                                            \
    }                                                                                              \
  }
Definition at line 213 of file vtkWordCloud.h.