/src/openbabel/src/stereo/tetranonplanar.cpp
Line | Count | Source |
1 | | /********************************************************************** |
2 | | tetranonplanar.h - OBTetraNonPlanarStereo |
3 | | |
4 | | Copyright (C) 2009 by Tim Vandermeersch |
5 | | |
6 | | This file is part of the Open Babel project. |
7 | | For more information, see <http://openbabel.org/> |
8 | | |
9 | | This program is free software; you can redistribute it and/or modify |
10 | | it under the terms of the GNU General Public License as published by |
11 | | the Free Software Foundation; either version 2 of the License, or |
12 | | (at your option) any later version. |
13 | | |
14 | | This program is distributed in the hope that it will be useful, |
15 | | but WITHOUT ANY WARRANTY; without even the implied warranty of |
16 | | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
17 | | GNU General Public License for more details. |
18 | | |
19 | | You should have received a copy of the GNU General Public License |
20 | | along with this program; if not, write to the Free Software |
21 | | Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA |
22 | | 02110-1301, USA. |
23 | | **********************************************************************/ |
24 | | #include <openbabel/stereo/tetranonplanar.h> |
25 | | |
26 | | namespace OpenBabel { |
27 | | |
28 | 4.06k | OBTetraNonPlanarStereo::OBTetraNonPlanarStereo(OBMol *mol) : OBStereoBase(mol) |
29 | 4.06k | { |
30 | 4.06k | } |
31 | | |
32 | | OBTetraNonPlanarStereo::~OBTetraNonPlanarStereo() |
33 | 4.06k | { |
34 | 4.06k | } |
35 | | |
36 | | } |
37 | | |