Of course:

Code:
int main( void )
{
    std::string word;
    std::vector<std::string> file;

    std::ifstream in( "thing.thing" );

    while ( in >> word )
        file.push_back( word );

    for ( size_t i=0; i<file.size(); i++ )
        std::cout<< file.at(i) << '\n';

    in.close();

    return 0;
}