This is an archive of CompuServe forum messages from 1985 to 1995, as saved in transcripts by John Foust.
Search Results (5 messages)
Your assignments make good sense, I'll do that from now on. Thanks. Bob
#C++ Conversion Ops
Message #7180
Joe, The reason why I was getting a syntax error in trying to declare a conversion operator in the TCL class CDialogText was due to AppMaker's mapping of .cp extension files to the Think C compiler, not to Symantec C++. Thus CDialogText.cp was being compiled in Think C, and so…
#C++ Conversion Ops
Message #7100
I believe I know what caused the insertion of operator long (); into the public part of the class declaration of CDialogText to generate a "syntax error" message. I had used AppMaker to generate a shell with a window containing a CDialogText box. I find that the starter project provided…
C++ Conversion Ops
Message #7097
Putting operator long (); into the public part of the class declaration of CDialogText (in the file CDialogText.h) gave the error message: Error: syntax error nothing else! Bob
From:
Bob Delaney
MAUG(R)/Macintosh Developers/Programmers Forum
· C and Pascal
July 17, 1993 1:40 PM
Simon, In the July, 1992 issue of MacTutor (now MacTech) magazine is an article by Kevin Raner called "A Compiler for Math Equations". At run time this C program allows the input of a mathematical function in string form. The function is then compiled into machine code in the heap…