Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F90856773
csv_writer.hh
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Tue, Nov 5, 09:40
Size
641 B
Mime Type
text/x-c++
Expires
Thu, Nov 7, 09:40 (2 d)
Engine
blob
Format
Raw Data
Handle
22138911
Attached To
R7571 SP4E-TB-TL-FR
csv_writer.hh
View Options
#ifndef __CSV_WRITER__HH__
#define __CSV_WRITER__HH__
/* -------------------------------------------------------------------------- */
#include "compute.hh"
#include <string>
//! Write system state to csv file
class CsvWriter : public Compute {
// Constructors/Destructors
public:
//! Construct from filename
CsvWriter(const std::string& filename);
// Methods
public:
//! Write file (calls compute)
void write(System& system);
//! Write file
void compute(System& system);
protected:
std::string filename;
};
/* -------------------------------------------------------------------------- */
#endif //__CSV_WRITER__HH__
Event Timeline
Log In to Comment