I am trying to write a code which lists all words used in a text file without repeating. I succeeded to list all the words but I always get repeating ,the if statement line 17 always gives the value of 0.I have no idea why , the words are listed properly in the vector. Any suggestion ?
#include <iostream>
#include <fstream>
#include <vector>
using namespace std;
class reading {
public:
    string word;
    vector<string> words;
};
int checkifexist(string word) {
    reading readingobject;
    bool exist = false;
    for (int i = 0; i < readingobject.words.size(); i++) {
        if (word == readingobject.words[i]) {
            exist = true;
            break;
        }
    }
    return exist;
}
int main() {
    reading readingobject;
    ifstream inFile;
    inFile.open("Book.txt");
    if (inFile.fail()) {
        cout << "file didn't open" << endl;
        exit(1);
    }
    readingobject.word.resize(1);
    while (!inFile.eof()) {
        inFile >> readingobject.word;
        if (checkifexist(readingobject.word) == 1)
            continue;
        cout << readingobject.word << endl;
        readingobject.words.push_back(readingobject.word);
    }
    return 0;
}
 
    