~ubuntu-branches/ubuntu/wily/dolfin/wily-proposed

« back to all changes in this revision

Viewing changes to dolfin/plot/VTKPlottableDirichletBC.h

  • Committer: Package Import Robot
  • Author(s): Johannes Ring
  • Date: 2014-09-22 14:35:34 UTC
  • mfrom: (1.1.17) (19.1.23 sid)
  • Revision ID: package-import@ubuntu.com-20140922143534-0yi89jyuqbgdxwm9
Tags: 1.4.0+dfsg-4
* debian/control: Disable libcgal-dev on i386, mipsel and sparc.
* debian/rules: Remove bad directives in pkg-config file dolfin.pc
  (closes: #760658).
* Remove debian/libdolfin-dev.lintian-overrides.

Show diffs side-by-side

added added

removed removed

Lines of Context:
38
38
  public:
39
39
 
40
40
    explicit
41
 
    VTKPlottableDirichletBC(boost::shared_ptr<const DirichletBC> bc);
 
41
    VTKPlottableDirichletBC(std::shared_ptr<const DirichletBC> bc);
42
42
 
43
43
    /// Additional parameters for VTKPlottableDirichletBC
44
44
    virtual Parameters default_parameters()
53
53
    bool is_compatible(const Variable &var) const;
54
54
 
55
55
    /// Update the scalar range of the plottable data
56
 
    void update(boost::shared_ptr<const Variable> var, const Parameters& parameters, int framecounter);
 
56
    void update(std::shared_ptr<const Variable> var, const Parameters& parameters, int framecounter);
57
57
 
58
58
  private:
59
59
 
60
 
    boost::shared_ptr<const DirichletBC> _bc;
 
60
    std::shared_ptr<const DirichletBC> _bc;
 
61
 
61
62
  };
62
63
 
63
 
  VTKPlottableDirichletBC *CreateVTKPlottable(boost::shared_ptr<const DirichletBC>);
 
64
  VTKPlottableDirichletBC* CreateVTKPlottable(std::shared_ptr<const DirichletBC>);
64
65
 
65
66
}
66
67