SciDAVis  1.D4
Macros
macros.h File Reference

Go to the source code of this file.

Macros

#define BASIC_ACCESSOR(type, var, method, Method)
#define CLASS_ACCESSOR(type, var, method, Method)

Macro Definition Documentation

#define BASIC_ACCESSOR (   type,
  var,
  method,
  Method 
)
Value:
type method() const { return var; }; \
void set ## Method(const type value) { var = value; }
#define CLASS_ACCESSOR (   type,
  var,
  method,
  Method 
)
Value:
type method() const { return var; }; \
void set ## Method(const type & value) { var = value; }