473,761 Members | 8,933 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

error passing ifstream. why?

I've the following error in the sample code below.. I think it's caused from
the passing of istream.
what causes this problem?
how can I solve it?

thank you very much

Giulio
---------------------------------------
Compiler: Default compiler
Building Makefile: "G:\Makefile.wi n"
Executing make...
make.exe -f "G:\Makefile.wi n" all
g++.exe -c main.cpp -o
ain.o -I"C:/Dev-Cpp/include/c++" -I"C:/Dev-Cpp/include/c++/mingw32" -I"C:/
Dev-Cpp/include/c++/backward" -I"C:/Dev-Cpp/include"

C:/Dev-Cpp/include/c++/bits/ios_base.h: In copy constructor
`std::basic_ios <char, std::char_trait s<char> >::basic_ios(co nst
std::basic_ios< char, std::char_trait s<char> >&)':
C:/Dev-Cpp/include/c++/bits/ios_base.h:421: `std::ios_base: :ios_base(const
std::ios_base&) ' is private
main.cpp:12: within this context
C:/Dev-Cpp/include/c++/streambuf: In copy constructor
`std::basic_fil ebuf<char,
std::char_trait s<char> >::basic_filebu f(const std::basic_file buf<char,
std::char_trait s<char> >&)':
C:/Dev-Cpp/include/c++/streambuf:486: `std::basic_str eambuf<_CharT,
_Traits>::basic _streambuf(cons t std::basic_stre ambuf<_CharT, _Traits>&)
[with _CharT = char, _Traits = std::char_trait s<char>]' is private
main.cpp:12: within this context

make.exe: *** [main.o] Error 1

Execution terminated
--------------------------------------

the CODE
------------------------------------
#include <fstream>
#include <iostream>
#include <stdlib.h>
#include <string>
using namespace std;
int importFromCSV(i fstream is){
return 5;
}//end importFromCSV

main (int argc, char *argv[]){
ifstream is ("aaa");
int q = importFromCSV(i s);
cout << q;
system ("pause");
return 0;
}
-----------------------------
Jul 19 '05 #1
2 8976
"Giulio" <giulio.gL E V A@email.it> wrote...
I've the following error in the sample code below.. I think it's caused from the passing of istream.
what causes this problem?
std::ifstream doesn't have a usable copy c-tor.
how can I solve it?


Never pass streams by value. Always use references.

Victor
Jul 19 '05 #2
In article <EU************ ********@tornad o.fastwebnet.it >,
Giulio <giulio.gL E V A@email.it> wrote:
I've the following error in the sample code below.. I think it's caused from
the passing of istream.
Yes. You can't pass istreams by value, because you can't copy them. Pass
them by reference instead.
int importFromCSV(i fstream is){


Change that to

int importFromCSV(i fstream& is){

--
Jon Bell <jt*******@pres by.edu> Presbyterian College
Dept. of Physics and Computer Science Clinton, South Carolina USA
Jul 19 '05 #3

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

3
4170
by: Sören | last post by:
Hi, I'd like advise on passing ownership of an iostream. The idea is that my factory class/function should open a file, read enough to detect file type (eg which soundfile format), then create a Reader object of the appropriate type for the file. Of course I can call close(), then pass the filename to the reader constructor and reopen the file there.
6
4285
by: csvka | last post by:
Hello, I wonder if I could pick your brains. I'm beginning to learn about C++. I have opened a file in my program and I want to read lines from it. I would like this to be done in a separate function called readline() because I would also like to do some processing on the line each time (ignoring comments and so on). I have:
4
3771
by: Lingyun Yang | last post by:
hi every one, I meet a compile error in my small homework program: Can I innitialize ifstream with a string? or I must come back to char* style string? Thank you! Lingyun
7
4924
by: mattsniderppl | last post by:
Hi, i'm relatively new to C++ from java and am having a difficult time with pointers. I'm sure there is something simple that I am doing wrong, but I can't seem to write this in a way that doesn't give me the error "Unable to write to memmory." This is a static function that receives a string that is the name of a file and an ifstream pointer. It then concatenates the path string using the string.h function strcat(char *, const char *) and...
2
2134
by: Massimo Soricetti | last post by:
Hello, I'm trying to fix this little class: <code> #include <ifstream> #include <iostream> #include <iomanip> using namespace std;
1
2222
by: enbulldog | last post by:
I am working on a program to "encrypt" a text file supplied by the user, and writing to another file also given by the user. I am very new to programming and am having trouble passing information from file to program and back to file. I am close, but I have comiler errors. Here is my code so far: #include <iostream> #include <cctype> #include <fstream> #include <iomanip> using namespace std; //Function: displayHeader
7
3644
by: gdarian216 | last post by:
im getting an error and I dont know why can anyone help. this is the error...... /tmp/ccxaenRY.o(.text+0x375): In function `main': : undefined reference to `average_quizes(records, float&)' collect2: ld returned 1 exit status
2
5759
by: im2cre8iv | last post by:
Here is my code where I am receiving the error: #include <fstream> #include "BinaryTree.h" using namespace std; Node* BinaryTree::MakeTree(ifstream& infile) { char name; infile>>name;
21
2562
by: blackx | last post by:
I got this error: error C2664: 'Vector::setVector' : cannot convert parameter 1 from 'const std::ifstream' to 'std::ifstream' How can it not be able to convert from std::ifstream to std::ifstream??? Here's the relevant code (I didn't put all the variables as those are not relevant): header file: class Matrix{
0
9554
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
10136
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
1
9923
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
9811
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
1
7358
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
5266
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
5405
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
3911
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
3
3509
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.