I am looking for a noob friendly C++ IDE for mac computers. I'm looking something similar to microsoft visual studio. I have tried xcode, but it appears to be missing some of the basic cpp. and h. files like stdafx.
Lp_baez 0 Light Poster
Recommended Answers
Jump to Poststdafx.h is a Microsoft header that is specific to a feature called "pre-compiled headers" that the Visual C++ compiler (among others) provides. This is not a standard header, and you should not expect it to exist on any other platform than on Windows + Visual C++. If you are very …
Jump to PostYou can seperate the function declarations and implementations into different files without stdafx.
Just create a file YourClass.h as well as YourClass.cpp then include your .h file in your .cpp file using the #include preprocessor directive.
All 5 Replies
Schol-R-LEA 1,446 Commie Mutant Traitor Featured Poster
mike_2000_17 2,669 21st Century Viking Team Colleague Featured Poster
Lp_baez 0 Light Poster
Paul.Esson 53 Junior Poster
mike_2000_17 2,669 21st Century Viking Team Colleague Featured Poster
Be a part of the DaniWeb community
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.