~chaffra/+junk/trilinos

« back to all changes in this revision

Viewing changes to packages/Sundance/src-solvers/Concrete/TSFEpetraVectorType.hpp

  • Committer: Bazaar Package Importer
  • Author(s): Christophe Prud'homme, Christophe Prud'homme, Johannes Ring
  • Date: 2009-12-13 12:53:22 UTC
  • mfrom: (5.1.2 sid)
  • Revision ID: james.westby@ubuntu.com-20091213125322-in0nrdjc55deqsw9
Tags: 10.0.3.dfsg-1
[Christophe Prud'homme]
* New upstream release

[Johannes Ring]
* debian/patches/libname.patch: Add prefix 'libtrilinos_' to all
  libraries. 
* debian/patches/soname.patch: Add soversion to libraries.
* debian/watch: Update download URL.
* debian/control:
  - Remove python-numeric from Build-Depends (virtual package).
  - Remove automake and autotools from Build-Depends and add cmake to
    reflect switch to CMake.
  - Add python-support to Build-Depends.
* debian/rules: 
  - Cleanup and updates for switch to CMake.

Show diffs side-by-side

added added

removed removed

Lines of Context:
28
28
#define TSFEPETRAVECTORTYPE_HPP
29
29
 
30
30
#include "TSFEpetraVectorSpace.hpp"
31
 
#include "TSFHandleable.hpp"
32
 
#include "TSFPrintable.hpp"
 
31
#include "SundanceHandleable.hpp"
 
32
#include "SundancePrintable.hpp"
33
33
#include "Teuchos_Describable.hpp"
34
34
#include "TSFVectorTypeExtensions.hpp"
35
 
 //#include "TSFLinearOperator.hpp"
 
35
 //#include "TSFLinearOperatorDecl.hpp"
36
36
 
37
37
 
38
38
namespace TSFExtended
51
51
 
52
52
 
53
53
  class EpetraVectorType : public VectorTypeExtensions<double>,
54
 
                           public Handleable<VectorTypeExtensions<double> >,
 
54
                           public SundanceUtils::Handleable<VectorTypeExtensions<double> >,
55
55
                           public Printable,
56
56
                           public Describable
57
57
  {