Points&Forces (survey)
Software tools facilitating the task of surveying architecture
a_axes.h
Go to the documentation of this file.
1 /*
2  Copyright 2010-2016 Pierre SMARS (smars@yuntech.edu.tw)
3  This program is free software: you can redistribute it and/or modify
4  it under the terms of the GNU General Public License as published by
5  the Free Software Foundation, either version 2 of the License, or
6  (at your option) any later version.
7 
8  This program is distributed in the hope that it will be useful,
9  but WITHOUT ANY WARRANTY; without even the implied warranty of
10  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11  GNU General Public License for more details.
12 
13  You should have received a copy of the GNU General Public License
14  along with this program. If not, see <http://www.gnu.org/licenses/>.
15 */
16 #ifndef _A_AXES_H_
17 #define _A_AXES_H_
18 
19 // .NAME a_axes
20 // .SECTION Author
21 // Pierre Smars
22 
23 #include <string>
24 #include <iostream>
25 #include <vector>
26 #include "a_element.h"
27 
29 class a_axes : public a_element
30 {
31  public:
32  a_axes();
33  ~a_axes();
34  static const std::string help();
35  virtual std::string type() const {return "a_axes";}
36  void reset();
37  virtual void read(std::istream& in);
38  virtual void write(std::ostream& o) const;
39 };
40 
41 inline bool operator!=(a_axes * l, const std::string s) {return (*l) !=s;}
42 void delete_vector(std::vector<a_axes *> &);
43 
44 #endif
void delete_vector(std::vector< a_axes * > &)
bool operator!=(a_axes *l, const std::string s)
Definition: a_axes.h:41
layer used by screen to draw vector graphics
Definition: a_axes.h:30
static const std::string help()
Definition: a_axes.cxx:54
void reset()
Definition: a_axes.cxx:69
virtual std::string type() const
Definition: a_axes.h:35
~a_axes()
Definition: a_axes.cxx:50
virtual void write(std::ostream &o) const
Definition: a_axes.cxx:78
virtual void read(std::istream &in)
Definition: a_axes.cxx:74
a_axes()
Definition: a_axes.cxx:23
layer used by screen to draw vector graphics
Definition: a_element.h:39
std::istringstream in
Definition: ply2tri.cxx:32