Developer documentation | Axl-2.5.1

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