| | | | | |

The File vector.h

    /*      vector.h
        author name
        creation date
        (optional modification dates)
    
        (general documentation for the code contained in the file body)
    */
    
    #ifndef _VECTOR_H   // protect against multiple reads
    #define _VECTOR_H
    
    namespace fsu        // namespace for the fsu code library
    {
    
      (code goes here)
    
      #include <vector.cpp> // include separate implementation file inside namespace
    } // end namespace
    
    #endif
    

| | Top of Page | 2. A Generic Vector Class - 6 of 20