Developer documentation | Axl-2.5.1

axlInspectorObjectSceneWidgetFieldTensor.cpp
Go to the documentation of this file.
1 /* axlInspectorObjectSceneWidgetFieldTensor.cpp ---
2  *
3  * Author: Julien Wintz
4  * Copyright (C) 2008 - Julien Wintz, Inria.
5  * Created: Fri Dec 17 22:48:33 2010 (+0100)
6  * Version: $Id$
7  * Last-Updated: Fri Jun 17 17:18:47 2011 (+0200)
8  * By: Thibaud Kloczko
9  * Update #: 11
10  */
11 
12 /* Commentary:
13  *
14  */
15 
16 /* Change log:
17  *
18  */
19 
21 
23 
24 class axlInspectorObjectSceneWidgetFieldTensorPrivate
25 {
26 public:
27  axlAbstractField *field;
28 };
29 
30 axlInspectorObjectSceneWidgetFieldTensor::axlInspectorObjectSceneWidgetFieldTensor(QWidget *parent) : QWidget(parent), d(new axlInspectorObjectSceneWidgetFieldTensorPrivate)
31 {
32  d->field = NULL;
33 }
34 
36 {
37  delete d;
38 
39  d = NULL;
40 }
41 
43 {
44  d->field = field;
45 }
Class axlAbstractField defines an API for arrays of numeric data.