ESS_GUI
Last change
on this file since d76beb4 was
d85c194,
checked in by Piotr Rozyczko <piotr.rozyczko@…>, 9 years ago
|
Remaining modules refactored
|
-
Property mode set to
100644
|
File size:
380 bytes
|
Line | |
---|
1 | /** \file analytical_model.h class AnalyticalModel:SASModel */ |
---|
2 | |
---|
3 | #ifndef ANALYTICALMODEL_H |
---|
4 | #define ANALYTICALMODEL_H |
---|
5 | |
---|
6 | #include "sas_model.h" |
---|
7 | #include "geo_shape.h" |
---|
8 | #include "iq.h" |
---|
9 | |
---|
10 | class AnalyticalModel : public SASModel{ |
---|
11 | |
---|
12 | public: |
---|
13 | AnalyticalModel(const GeoShape &); |
---|
14 | ~AnalyticalModel(); |
---|
15 | |
---|
16 | void CalculateIQ(IQ *); |
---|
17 | |
---|
18 | private: |
---|
19 | AnalyticalModel(); |
---|
20 | GeoShape *shape_; |
---|
21 | }; |
---|
22 | |
---|
23 | #endif |
---|
Note: See
TracBrowser
for help on using the repository browser.