Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F92006246
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
Sat, Nov 16, 13:36
Size
641 B
Mime Type
text/x-c++
Expires
Mon, Nov 18, 13:36 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
22276306
Attached To
R9316 Omid_Ashtari
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