/** Scales a vector. @param a a scalar
@param b a vector
@return the vector with each component multiplied by the scalar
*/ vector<int> operator*(int a, const vector<int>& b)
/** CS101 Homework 1 Assignment 1. @file assign1.cppIf you omit the @file tag, functions aren't extracted.
@author Sally Student
*/
INPUT = myfile1.cpp myfile2.cpp . . .You can change other entries if you like.
If you don't want to fuss with the config file, you can instead use
echo "INPUT=myfile1.cpp myfile2.cpp . . ." | c:\doxygen-1.2.3.4\bin/doxygen -
(The - means “read from standard input”.)