1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
|
#ifndef vtkSMMyBoundsDomain_h
#define vtkSMMyBoundsDomain_h
#include "vtkSMBoundsDomain.h"
/// useless but just showing we can do it
class vtkSMMyBoundsDomain : public vtkSMBoundsDomain
{
public:
static vtkSMMyBoundsDomain* New();
vtkTypeMacro(vtkSMMyBoundsDomain, vtkSMBoundsDomain);
void PrintSelf(ostream& os, vtkIndent indent);
// overload setting of default values so we can orient them
// our way
void Update(vtkSMProperty* prop);
protected:
vtkSMMyBoundsDomain();
~vtkSMMyBoundsDomain();
};
#endif // vtkSMMyBoundsDomain_h
|