--- trunk/src/io/ZConsReader.hpp 2005/01/12 22:41:40 246 +++ trunk/src/io/ZConsReader.hpp 2006/05/17 21:51:42 963 @@ -1,4 +1,4 @@ - /* +/* * Copyright (c) 2005 The University of Notre Dame. All Rights Reserved. * * The University of Notre Dame grants you ("Licensee") a @@ -48,13 +48,13 @@ namespace oopse { #include "brains/SimInfo.hpp" #include "constraints/ZconsStruct.hpp" namespace oopse { - - -/** - * @class ZConsReader - * @todo document - */ -class ZConsReader{ + + + /** + * @class ZConsReader + * @todo document + */ + class ZConsReader{ public: ZConsReader(SimInfo* info); @@ -65,17 +65,17 @@ class ZConsReader{ int getNZMols() {return allZmols_.size();} int getNFixedZmols() {return fixedZmolData_.size();} const std::vector& getFixedZMolData() {return fixedZmolData_; } - double getCurTime() {return curTime_; } - + RealType getCurTime() {return curTime_; } + private: std::ifstream istream_; SimInfo* info_; std::vector allZmols_; - double curTime_; + RealType curTime_; std::vector fixedZmolData_; const static int MAXBUFFERSIZE = 2000; -}; - + }; + } #endif