Tagged Questions
0
votes
1answer
171 views
Templated reading/writing of binary files
So, I've been trying to automatize binary file reading and writing in C++ in the following way (basically, because when handling dynamic data things get specific):
#include <iostream>
#include ...
1
vote
1answer
123 views
fstream weird behavior
I'm trying to serialize some private attributes of my class:
class Task {
public:
enum Status { COMPLETED, PENDIENT };
// BLAH BLAH BLAH
// CLASS GETTERS SETTERS ETC...
...
1
vote
1answer
145 views
Writing/reading raw objects to file
Problem: I need to write/read objects from a file.This because I need to write/read a std::list to file, but in whatever case.Not only with T=int (this would be simple), but with whatever parameter.
...
1
vote
2answers
206 views
Can we store an object in a file for later retrieval?
I am trying to write a code, where I need to store the intermediate results in a file for later retrieval. For example, I need to store all the values in an 3D Array in a file, with the dimensions and ...
0
votes
1answer
114 views
unserialization from std::fstream
Is there anything particularly bad or naive about reading serialized data (of a known format + endianness) from a file using something like this? I'm not worried about portability and realistically it ...
1
vote
1answer
121 views
How do I best read a boost serialization archive?
I guess my question derives partially from this question: std::ifstream buffer caching. I have a boost serialization archive, and am currently reading out of it with the & operator as suggested on ...
2
votes
3answers
457 views
boost::Serialize VS std::fstream
Hey so i guess i'm a little confused on the purpose of boost::serialize:
Having to add a boost::serialize function to every class you plan to save seems to kind of defeat the purpose of the library, ...
0
votes
4answers
1k views
Why won't my ofstream work when I put it outside my while statement?
Every time I do anything, and my while(1) gets called in my main function, my file gets cleared. It's driving me crazy. I've tried EVERYTHING. I try to put my ofstream out("data.dat"); outside the ...
1
vote
4answers
1k views
What am I doing wrong with my serializing a vector with structs in it to a .dat file?
If I type in
Description: Apple
Quantity: 10
Wholesale Cost: 30
Retail Cost: 20
Date Added: December
These are the contents in my .dat file:
1Apple103020December
But when I load my program, ...