Silverfrost Forums

Welcome to our forums

C++ include files

14 Sep 2006 10:04 #1055

Hello

I was just doing a quick check and noticed that although you can create a c++ project with source files and references to DLL, the project explorer won't let you add anything to the include folder. Test was the basic Hello World thing :

// Fig. 1.2: fig01_02.cpp // A first program in C++ #include <iostream>

int main() { std::cout << 'Hello World!\n';

return 0; // indicate that program ended successfully }

I do have Visual C++ version 6

thanks

Lester

'Imagination is more important than knowledge' - Albert Einstein (1879 - 1955)

14 Sep 2006 11:31 #1056

Lester

Plato3 does not allow you to add include files to the project. It should do this automatically for you when you do a build. Chances are Plato3 needs the file extension to iostream etc. to be given explicitly. Should be easy enough to fix.

Please login to reply.