Developer documentation | Axl-2.5.1

axlAbstractVolumeRational.cpp
Go to the documentation of this file.
1 /* axlAbstractVolumeRational.cpp ---
2  *
3  * Author:Anais Ducoffe
4  * Copyright (C) 2012 - Anais Ducoffe, Inria.
5  * Created:
6  * Version: $Id$
7  * Last-Updated:
8  * By:
9  * Update #:
10  */
11 
12 /* Commentary:
13  *
14  */
15 
16 /* Change log:
17  *
18  */
19 
21 #include <dtkCoreSupport/dtkGlobal.h>
22 
23 class axlAbstractVolumeRationalPrivate
24 {
25 public:
26 };
27 
29 {
30 
31 }
32 
34 {
35  delete d;
36 
37  d = NULL;
38 }
39 
41  DTK_DEFAULT_IMPLEMENTATION;
42  return "";
43 }
44 
45 QString axlAbstractVolumeRational::write_numerator(unsigned index) const {
46  DTK_DEFAULT_IMPLEMENTATION;
47  return "";
48 }
49 
51  DTK_DEFAULT_IMPLEMENTATION;
52  return "";
53 }
54 
55 void axlAbstractVolumeRational::setDomain(const QString& domain) {
56  DTK_DEFAULT_IMPLEMENTATION;
57  DTK_UNUSED(domain);
58 }
59 
60 void axlAbstractVolumeRational::setDomain(const QVector<double> domain) {
61  DTK_DEFAULT_IMPLEMENTATION;
62  DTK_UNUSED(domain);
63 }
64 
65 void axlAbstractVolumeRational::setNumerator(int index, const QString& numerator) {
66  DTK_DEFAULT_IMPLEMENTATION;
67  DTK_UNUSED(index);
68  DTK_UNUSED(numerator);
69 }
70 
71 void axlAbstractVolumeRational::setNumAndDenom(QStringList numAndDenom) {
72  DTK_DEFAULT_IMPLEMENTATION;
73  DTK_UNUSED(numAndDenom);
74 }
75 
76 void axlAbstractVolumeRational::setDenominator(const QString& denominator) {
77  DTK_DEFAULT_IMPLEMENTATION;
78  DTK_UNUSED(denominator);
79 }
80 
81 void axlAbstractVolumeRational::setSurface(QVector<double> domain, QStringList numAndDenom) {
82  DTK_DEFAULT_IMPLEMENTATION;
83  DTK_UNUSED(domain);
84  DTK_UNUSED(numAndDenom);
85 }
86 
virtual void setNumerator(int index, const QString &numerator)
virtual QString write_denominator(void) const
virtual QString write_numerator(unsigned index) const
virtual void setDenominator(const QString &denominator)
virtual void setDomain(const QString &domain)
virtual QString write_domain(void) const
virtual void setNumAndDenom(QStringList numAndDenom)
virtual void setSurface(QVector< double > domain, QStringList numAndDenom)