C++ file naming convention - uppercase or lowercase the "first letter"?
- by Petike
Hello,
in C++, is there any convention to either "uppercase" or "lowercase" the first letter of source code file names?
For example if I have the class "MyClass" in a header file, should I name the file as
MyClass.hpp
or
myClass.hpp
?