Moka libraries
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
ineq-table-2-att.hh
Go to the documentation of this file.
1 /*
2  * lib-spamod : Visualisation des objets en discret.
3  * Copyright (C) 2004, Moka Team, Université de Poitiers, Laboratoire SIC
4  * http://www.sic.sp2mi.univ-poitiers.fr/
5  * Copyright (C) 2009, Guillaume Damiand, CNRS, LIRIS,
6  * guillaume.damiand@liris.cnrs.fr, http://liris.cnrs.fr/
7  *
8  * This file is part of lib-spamod
9  *
10  * This program is free software: you can redistribute it and/or modify
11  * it under the terms of the GNU Lesser General Public License as published by
12  * the Free Software Foundation, either version 3 of the License, or
13  * (at your option) any later version.
14  *
15  * This program is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18  * GNU Lesser General Public License for more details.
19  *
20  * You should have received a copy of the GNU Lesser General Public License
21  * along with this program. If not, see <http://www.gnu.org/licenses/>.
22  */
23 
24 /******************************************************************************
25  * Fichier : Ineq_Table2_Att.h *
26  * Auteur : DEXET Martine *
27  *----------------------------------------------------------------------------*
28  * Ce fichier contient la spécification de la classe Ineq_Table2_Att. Cette *
29  * classe permet de stocker un objet de la classe Ineq_Table2 en tant *
30  * qu'attribut. *
31  * *
32  *****************************************************************************/
33 
34 
35 #ifndef INEQ_TABLE2_ATT_H
36 #define INEQ_TABLE2_ATT_H
37 
38 #include "ineq-table-2.hh"
39 #include "attribute.hh"
40 
41 
42 
43 /******************************************************************************
44  * Classe Ineq_Table2_Att *
45  *****************************************************************************/
46 
47 class Ineq_Table2_Att : public CAttribute {
48 
49  public:
50 
51  // Constructeurs.
53  Ineq_Table2_Att(CVertex const & p1, CVertex const & p2, CVertex const & p3);
55 
56  // Destructeur.
57  virtual ~Ineq_Table2_Att();
58 
59  // Surcharge des méthodes de la classe CAttribute.
60  TAttributeId getType() const;
62  CAttribute * copy() const;
63  void destroy();
64  void save(std::ostream &fd) const;
65  void load(std::istream &fd);
66 
67  private:
68 
69  // Pointeur sur un objet de la classe Ineq_Table2.
70  Ineq_Table2 * tab;
71 };
72 
73 /******************************************************************************
74  * Fichier : Ineq_Table2_Att.inl *
75  * Auteur : DEXET Martine *
76  *----------------------------------------------------------------------------*
77  * Ce fichier contient l'implémentation des méthodes de la classe *
78  * Ineq_Table2_Att. *
79  * *
80  *****************************************************************************/
81 
82 // Constructeurs.
83 inline
85 {
86  tab = new Ineq_Table2();
87 }
88 
89 inline
91  CVertex const & p2,
92  CVertex const & p3)
93 {
94  tab = new Ineq_Table2(p1, p2, p3);
95 }
96 
97 inline
99 {
100  tab = t;
101 }
102 
103 
104  // Destructeur.
105 inline
107 {
108  delete tab;
109 }
110 
111 
112 // Surcharge des méthodes de la classe CAttribute.
113 inline
114 TAttributeId Ineq_Table2_Att::getType() const
115 {
116  return INEQ2_ATTRIBUTE_ID;
117 }
118 
119 inline
121 {
122  return tab;
123 }
124 
125 inline
126 CAttribute * Ineq_Table2_Att::copy() const
127 {
128  Ineq_Table2 * t = new Ineq_Table2(*(this->tab));
129 
130  return new Ineq_Table2_Att(t);
131 }
132 
133 
134 inline
136 {
137  delete this;
138 }
139 
140 
141 inline
142 void Ineq_Table2_Att::save(std::ostream &fd) const
143 {
144  for (int i=0 ; i<2 ; i++)
145  fd << *tab->Get_Ineq(i);
146 }
147 
148 inline
149 void Ineq_Table2_Att::load(std::istream &fd)
150 {
151  Inequation iq;
152 
153  for (int i=0; i<2; i++)
154  {
155  fd >> iq;
156  tab->Set_Ineq(i, iq);
157  }
158 }
159 
160 #endif