#include <SoCSOSystem.h>
#include <SoCSODefines.h>
#include <mlStylePalette.h>
#include "CSOVisualizationSettings.h"
#include <ThirdPartyWarningsDisable.h>
#include <boost/unordered_set.hpp>
#include <ThirdPartyWarningsRestore.h>
 
Go to the source code of this file.
 | 
| namespace   | ml | 
|   | Main documentation file for ML users and developers. 
  | 
|   | 
◆ addMemberAndAccessMethod
      
        
          | #define addMemberAndAccessMethod | 
          ( | 
            | 
          type,  | 
        
        
           | 
           | 
            | 
          name  | 
        
        
           | 
          ) | 
           |  | 
        
      
 
Value:  public:\
  type name() const { return _##name; } \
  void name(type value) { _##name = value; } \
  protected: \
  type _##name;
 
Macros to generate getters,setters for members. 
Definition at line 49 of file CSOVisualizationSettingsWithStylePalette.h.
 
 
◆ addMemberAndAccessMethodWithCSO
      
        
          | #define addMemberAndAccessMethodWithCSO | 
          ( | 
            | 
          type,  | 
        
        
           | 
           | 
            | 
          name  | 
        
        
           | 
          ) | 
           |  | 
        
      
 
Value:  public:\
  type name() const { return _##name; } \
  virtual type name(CSO* cso) const; \
  void name(type value) { _##name = value; } \
  protected: \
  type _##name;
 
Definition at line 56 of file CSOVisualizationSettingsWithStylePalette.h.
 
 
◆ overwriteAccessMethodsWithCSO
      
        
          | #define overwriteAccessMethodsWithCSO | 
          ( | 
            | 
          type,  | 
        
        
           | 
           | 
            | 
          name  | 
        
        
           | 
          ) | 
           |  |