Developer documentation | Axl-2.5.1

axlAbstractVisitor.cpp
Go to the documentation of this file.
1 /* axlAbstractVisitor.cpp ---
2  *
3  * Author: Anais Ducoffe
4  * Copyright (C) 2013 - Anais Ducoffe, Inria.
5  */
6 
7 /* Commentary:
8  *
9  */
10 
11 /* Change log:
12  *
13  */
14 
15 #include "axlAbstractVisitor.h"
16 #include <dtkCoreSupport/dtkGlobal.h>
17 //#include <axlGui/axlInspectorObjectFactory.h>
18 
19 class axlAbstractVisitorPrivate
20 {
21 public:
22 };
23 
24 axlAbstractVisitor::axlAbstractVisitor(QObject *parent) : dtkAbstractObject(), d(new axlAbstractVisitorPrivate)
25 {
26  this->setParent(parent);
27 }
28 
30 {
31  delete d;
32 
33  d = NULL;
34 }
35 
36 
38 
41 //axlInspectorObjectInterface *axlAbstractVisitor::form(void){
42 // DTK_DEFAULT_IMPLEMENTATION;
43 // return NULL;
44 //}
45 
46 // /////////////////////////////////////////////////////////////////
47 // axlAbstractVisitor documentation
48 // /////////////////////////////////////////////////////////////////
49 
axlAbstractVisitor(QObject *parent=NULL)
virtual ~axlAbstractVisitor(void)