emplace back

Hi guys I am writing a kind of self messaging maybe you could even call it a memo or notes to self console application,very simple stuff

I am trying to use the emplace_back function on std::vector I read that it came into existence in c++11 so I enabled c++11 in my build settings but I am still getting an error


the reason I want to do this is because I want to create a vector of ofstreams and since the copy constructor cannot be called for ofstreams I need to use the emplace back function

here is the error I am getting pretty much saying it is a deleted function,also it will show the error on line 75 of stl_constructs header file



\CodeBlocks\MinGW\lib\gcc\mingw32\4.9.2\include\c++\bits\stl_construct.h|75|error: use of deleted function 'std::basic_ofstream<char>::basic_ofstream(const std::basic_ofstream<char>&)'|


thanks

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
#include <iostream>
#include <algorithm>
#include <vector>
#include <fstream>
#include <limits>

using namespace std;

class message
{

public:
    string title;
    string time;

    message(string t,string tm)
        : title(t),time(tm)
    {
    }

    string getHeader(const string& header)
    {

        if(header == "title")
        {

            return title;
        }
        if(header == "time")
        {

            return time;
        }
    }
};

class messageSorter
{


public:
    string field;

    messageSorter(string f)
        :field(f)
    {}

    bool operator()(message& lhs,message& rhs)
    {

        return lhs.getHeader(field) < rhs.getHeader(field);
    }
};

class account
{

public:

    string username;
    string password;
    vector<message> messages;

    account()
    {

        username = "";
        password = "";
    }

    account(string u,string p)
    {

        username = u;
        password = p;

    }
};

bool usernameNotTaken(vector<account> &accounts,string username)
{

    for(int i = 0; i < accounts.size(); i++)
    {

        if(username == accounts.at(i).username)
        {

            return false;
        }
    }
    return true;
}

bool createAccount(vector<account> &accounts,string &username,string &password,ofstream &accountsFileO)
{

    if(usernameNotTaken(accounts,username))
    {
        accounts.push_back(account(username,password));
        accountsFileO << username << endl;
        accountsFileO << password << endl;
        ofstream messagesFile;
        string fileName = username.append(".txt");
        messagesFile.open(fileName.c_str());
        cout << "success" << endl;
        return true;
    }
    cout << "sorry username taken will need a different name" << endl;
    return false;
}

bool enterNumber(int &num){

     if(cin >> num){

        return true;
     }else{
       cin.clear();
       cin.ignore(numeric_limits<streamsize>::max(), '\n');
       return false;
     }
}

void driver()
{
    vector<account> accounts;
    ofstream accountsFileO;
    ifstream accountsFileI;
    vector<ofstream> accountMessages;
    string username;
    string password;
    string createUser;
    string createPass;
    bool loggedIn = false;
    int newAccount;

    accountsFileO.open("accounts.txt",ios::app);

    if(!accountsFileO.is_open()){

        return;
    }

    accountsFileI.open("accounts.txt");

    if(!accountsFileI.is_open()){

        return;
    }
    // read in all accounts from file
    // and set up ofstreams for account messages

    while(accountsFileI){

        string name;
        string pass;

        accountsFileI >> name;
        accountsFileI >> pass;

        string messagesFileName = name.append(".txt");
        ofstream tempOf;
        tempOf.open(messagesFileName.c_str());
        accountMessages.emplace_back();

        account temp(name,pass);
        accounts.push_back(temp);
    }


    cout << "***** WELCOME TO THE MESSAGES SERVICE ****** " << endl;
    cout << "are you not a member want to create an account? press 1 for yes " << endl;

    while(!enterNumber(newAccount)){

        cout << "wrong input,you entered characters? please re enter choice" << endl;
        cout << "are you not a member want to create an account? press 1 for yes " << endl;
    }

    if(newAccount == 1)
    {
        do
        {
            cout << "enter a username" << endl;
            cin >> createUser;
            cout << "enter a password" << endl;
            cin >> createPass;

        }
        while(!createAccount(accounts,createUser,createPass,accountsFileO));
    }
    cin.get();

    while(!loggedIn)
    {
        cout << "> enter username" << endl;
        getline(cin,username);
        cout << "> enter password" << endl;
        getline(cin,password);

        for(int i = 0; i < accounts.size(); i++)
        {

            if(username == accounts.at(i).username && password == accounts.at(i).password)
            {
                loggedIn = true;
            }
        }
    }
    if(loggedIn)
    {
        account thisAccount ;

        for(int i = 0; i < accounts.size(); i++)
        {
            if(username == accounts.at(i).username && password == accounts.at(i).password)
            {
                thisAccount = accounts.at(i);
            }
        }
        while(true)
        {
            int choice;
            cout << "view messages" << endl;
            cout << "press 1 to view by title,press 2 to view by time"
            << "3 to send message to self " << "press  to quit " << endl;
            while(!enterNumber(choice))
            {

                cout << "wrong input,you entered characters? please re enter choice" << endl;
                cout << "press 1 to view by title,press 2 to view by time"
                << "3 to send message to self " << "press  to quit " << endl;
            }
            cin.get();

            if(choice == 1)
            {
                sort(thisAccount.messages.begin(),thisAccount.messages.end(),
                     messageSorter("title"));
                for(int i = 0; i < thisAccount.messages.size(); i++)
                {

                    cout << thisAccount.messages.at(i).title <<
                         thisAccount.messages.at(i).time << endl;
                }
            }
            if(choice == 2)
            {

                sort(thisAccount.messages.begin(),thisAccount.messages.end(),
                     messageSorter("time"));
                for(int i = 0; i < thisAccount.messages.size(); i++)
                {

                    cout << thisAccount.messages.at(i).title <<
                         thisAccount.messages.at(i).time << endl;
                }
            }
            if(choice == 3)
            {

                string title;
                string time;

                cout << "enter title of message " << endl;
                getline(cin,title);
                cout << "enter time of message " << endl;
                getline(cin,time);

                thisAccount.messages.push_back(message(title,time));
            }
            if(choice == 4)
            {
                return;
            }
        }
    }
}

int main()
{
    driver();
}
This code compiles fine for me with GCC 7.3 so my guess is that your compiler is simply too old.
thanks Peter that is probably the reason

apart from updating my compiler is there any other way I can get around the copy constructor problem,

I could make my own vector class but that would take some time
You could store pointers in the vector.

1
2
vector<ofstream*> accountMessages;
accountMessages.push_back(new ofstream);


If your compiler supports it you could use std::unique_ptr instead of raw pointer. That way you don't need to worry about memory leaks if you forget to use delete to destroy the ofstream objects when you are done using them.
Hi Peter yes thats the idea I choose to use,

but then I ran into a problem with dereferencing the pointers

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36


while(accountsFileI){

        string name;
        string pass;

        accountsFileI >> name;
        accountsFileI >> pass;

        string messagesFileName = name.append(".txt");
        ofstream* tempOf = new ofstream;
        tempOf->open(messagesFileName.c_str());
        accountMessages.push_back(tempOf);

        account temp(name,pass);
        accounts.push_back(temp);
    }

    for(int i = 0; i < accountMessages.size(); i++){

        string title;
        string time;

        while(!accountMessages.at(i)->eof()){

            *(accountMessages.at(i)) >> title; // will give me an error but not sure why
           // since I am just derefencing a pointer?
           // accountMessages.at(i) >> time;
        }

    }



Stream operators should point in the direction of the data flow. In this case the data goes from title to the ofstream so the operator should point towards the ofstream.

 
*accountMessages.at(i) << title;
Last edited on
oh my bad big mistake,I should have created an ifstream :o

totally slipped my mind,

thanks Peter
Topic archived. No new replies allowed.