Lemma is an Electromagnetics API
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

banner.h 653B

123456789101112131415161718192021222324
  1. /* This file is part of Lemma, a geophysical modelling and inversion API
  2. */
  3. /* This Source Code Form is subject to the terms of the Mozilla Public
  4. * License, v. 2.0. If a copy of the MPL was not distributed with this
  5. * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
  6. /**
  7. @file
  8. @author M. Andy Kass
  9. @date 05/03/2010
  10. @version $Id: banner.h 87 2013-09-05 22:44:05Z tirons $
  11. **/
  12. #ifndef __BANNER_H
  13. #define __BANNER_H
  14. #include <iostream>
  15. #include <ostream>
  16. void banner(const std::string &name, const std::string &version,
  17. const std::string &usage);
  18. #endif
  19. /* vim: set tabstop=4 expandtab: */
  20. /* vim: set filetype=cpp: */