Tagged Questions
2
votes
2answers
227 views
lisp file pointers in classes
I'm running up against a problem in understanding the CLOS way of handling file access within a class. In c++ I would be able to do this:
class Foo {
Foo (string filename); // opens the file ...