~ubuntu-branches/ubuntu/natty/gnome-chemistry-utils/natty-security

« back to all changes in this revision

Viewing changes to programs/3d/document.h

  • Committer: Bazaar Package Importer
  • Author(s): Jordan Mantha
  • Date: 2007-12-12 20:34:25 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20071212203425-yfb4zry8fdy8iupn
Tags: 0.8.4-3ubuntu1
* Merge from Debian unstable
* debian/control: add firefox to gcu-plugin dependencies
* Modify Maintainer value to match the DebianMaintainerField
  specification.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
// -*- C++ -*-
 
2
 
 
3
/* 
 
4
 * Gnome Chemistry Utils
 
5
 * programs/3d/document.h 
 
6
 *
 
7
 * Copyright (C) 2006 Jean Bréfort <jean.brefort@normalesup.org>
 
8
 *
 
9
 * This program is free software; you can redistribute it and/or 
 
10
 * modify it under the terms of the GNU General Public License as 
 
11
 * published by the Free Software Foundation; either version 2 of the
 
12
 * License, or (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 St, Fifth Floor, Boston, MA  02110-1301
 
22
 * USA
 
23
 */
 
24
 
 
25
#ifndef GC3D_DOCUMENT_H
 
26
#define GC3D_DOCUMENT_H
 
27
 
 
28
#include <gcu/macros.h>
 
29
#include <gcu/chem3ddoc.h>
 
30
#include <openbabel/mol.h>
 
31
 
 
32
using namespace gcu;
 
33
using namespace OpenBabel;
 
34
 
 
35
class gc3dApplication;
 
36
 
 
37
class gc3dDocument: public Chem3dDoc
 
38
{
 
39
public:
 
40
        gc3dDocument (gc3dApplication *App);
 
41
        virtual ~gc3dDocument ();
 
42
 
 
43
        void Load (char const *uri, char const *mime_type);
 
44
};
 
45
 
 
46
#endif  //      GC3D_DOCUMENT_H