Discussions related to Visual Prolog
ludieter
Posts: 23
Joined: 21 Dec 2010 19:40

inputstream

Unread post by ludieter »

Trying to read lines from a file to further process:

File=inputStream_file::openfile("abc.txt"),
Line=inputStream::readLine(),

I get
error c229 : Undeclared identifier 'inputStream::readLine/0->', the identifier is known as 'readLine/0->' in the interface 'inputStream'

What am I missing here?
Vitaly Markov
Active Member
Posts: 40
Joined: 30 Nov 2003 0:01

Unread post by Vitaly Markov »

File=inputStream_file::openfile("abc.txt"),
Line=File:readLine(),
Post Reply