| c++ Programming Glossary: setnameusing namespace std; in a header file http://stackoverflow.com/questions/14575799/using-namespace-std-in-a-header-file  private string name fstream file other stuff public void setName string I also have in the implementation file #include MyStuff.h.. file #include MyStuff.h using namespace std void MyStuff setName string name name name and in the program file I have... #include.. MyStuff Stuff cout Enter Your Name getline cin name Stuff.setName name And I'm gathering that applying using namespace std in.. 
 Can I use shared library created in C++ in a C program? http://stackoverflow.com/questions/14917952/can-i-use-shared-library-created-in-c-in-a-c-program  here. C Functions can't contain any CPPiness. void myclass_setName void pClassObj const char pName int nameLen #ifdef __cplusplus.. contain any CPPiness in their prototypes. void myclass_setName void pClassObj const char pName int nameLen But CPP knowledge.. MyClass pMyClass static_cast MyClass pClassObj pMyClass setName pName nameLen #extern C CPP Stuff goes here... or vice versa... 
 C++ unresolved external symbol http://stackoverflow.com/questions/15370187/c-unresolved-external-symbol  using namespace std class CPractice public static void setName string s  name s  static string getName  return name  private.. return name  private static string name int main CPractice setName Name cout n CPractice getName system PAUSE return EXIT_SUCCESS.. 
 When should you use 'friend' in C++? http://stackoverflow.com/questions/17434/when-should-you-use-friend-in-c 
 how to set a threadname in MacOSX http://stackoverflow.com/questions/2057960/how-to-set-a-threadname-in-macosx    I recommend the following NSThread currentThread setName @ My thread name For Cocoa pthread_setname_np My thread name.. 
 |