Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F91642324
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
Wed, Nov 13, 00:34
Size
641 B
Mime Type
text/x-c++
Expires
Fri, Nov 15, 00:34 (2 d)
Engine
blob
Format
Raw Data
Handle
22276306
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