Tagged Questions
0
votes
0answers
73 views
Fstream Intialization in a Class - Checking if File Opened
Example:
//Header File
class Example
{
private:
fstream InputObject;
public:
Example();
}
//Implementation File
...
0
votes
1answer
102 views
can fstream objects be used inside a class?
I have the following class definition... and I'm wondering about the fstream objects.
#ifndef CLIENTLIST_H
#define CLIENTLIST_H
#include <string>
#include <vector>
#include ...
1
vote
3answers
427 views
Why is my fstream being implicitly deleted?
I'm working with a few HID devices, all of which have classes deriving from the following base class (in main.h):
class HIDDevice {
public:
hid_device *device;
virtual void ...
1
vote
2answers
133 views
class object is not reading from text file using fsream
Hi I am having an issue with fstream variable. my movie class can't read info from the a text file:
here is the output is produces:
-858993460 Ì -858993460 -858993460 -9.25596e+061 -858993460 ...
1
vote
2answers
147 views
Boolean function doesn't read all the input from a text file
Hi I am working on a school project and I am having a hard time with a particular function.
I have been working on it for a while, I would appreciate any type of input.
We have to use this function: ...
1
vote
1answer
392 views
When trying to use a static ifstream member and accompanying function, I get a linker error
Assuming that if the error's spotted in the .o file that it's the linker's problem...
Anyway, I'm writing a program to organize the courses I want to take in college by outputting them into a nicely ...
0
votes
2answers
559 views
Defining an output file stream within a class
How can I define an output file stream within a class, so that I don't have to keep passing it around to functions. Basically what I want to do is this:
class A {
private:
ofstream otp ;
};
...
0
votes
3answers
122 views
Output not matching input C++
I am trying to (right now anyway), to display a maze from a data file. The first grouping of numbers is the size, the second the entrance, and the third are for the exit coordinates.
I have a simple ...