Skip to content
Snippets Groups Projects
Commit ba10bd38 authored by Gerardo Tauriello's avatar Gerardo Tauriello
Browse files

Fix missing stdint includes.

parent 801307a6
Branches
Tags
No related merge requests found
......@@ -7,6 +7,7 @@
#include <ost/tri_matrix.hh>
#include <ost/seq/sequence_handle.hh>
#include <ost/seq/alignment_handle.hh>
#include <ost/stdint.hh>
#include "similarity_matrix.hh"
#include "contact_overlap.hh"
#include "module_config.hh"
......
......@@ -31,6 +31,7 @@
#include <ost/mol/mm/state_extractor.hh>
#include <ost/mol/mm/topology.hh>
#include <ost/mol/mm/modeller.hh>
#include <ost/stdint.hh>
namespace OpenMM{
class Context; //hacky way of telling the Context is around.
......@@ -92,12 +93,10 @@ class TrajWriter : public Observer{
public:
TrajWriter(int rhythm, const String& pdb_filename, const String& dcd_filename): rhythm_(rhythm),
pdb_filename_(pdb_filename),
dcd_filename_(dcd_filename),
stream_(),
registered_(false),
frames_(0) { }
TrajWriter(int rhythm, const String& pdb_filename, const String& dcd_filename)
: rhythm_(rhythm), pdb_filename_(pdb_filename),
dcd_filename_(dcd_filename), stream_(), registered_(false),
frames_(0) { }
void Init(boost::shared_ptr<OpenMM::Context> c,
TopologyPtr top,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment