Developer documentation | Axl-2.5.1

axlAbstractVolumeRational.h
Go to the documentation of this file.
1 /* axlAbstractVolumeRational.h ---
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 
20 #ifndef AXLABSTRACTVOLUMERATIONAL_H
21 #define AXLABSTRACTVOLUMERATIONAL_H
22 
24 #include "axlCoreExport.h"
25 
26 class axlAbstractVolumeRationalPrivate;
27 
29 {
30  Q_OBJECT
31 
32 public:
34  virtual ~axlAbstractVolumeRational(void);
35 
36 
37 
38  virtual QString write_domain(void) const;
39  virtual QString write_numerator(unsigned index) const;
40  virtual QString write_denominator(void) const;
41  virtual void setDomain(const QString& domain);
42  virtual void setDomain(const QVector<double> domain);
43  virtual void setNumerator(int index, const QString& numerator);
44  virtual void setDenominator(const QString& denominator);
45  virtual void setNumAndDenom(QStringList numAndDenom);
46  virtual void setSurface(QVector<double> domain, QStringList numAndDenom);
47 
48 private:
49  axlAbstractVolumeRationalPrivate *d;
50 };
51 #endif
#define AXLCORE_EXPORT