I feel that header files which i include in c++ acts as equivalents of GEMS in ruby but i am not sure.A brief description of gems along the lines of c++ will be helpful
Asked
Active
Viewed 87 times
1 Answers
2
In languages such as Ruby and Java you merely 'require' or similar a package (which is called a gem in Ruby). In C++, you generally need both to #include one or more header files, and also to link with a (dynamic or static) library.

Torsten Martinsen
- 21
- 2