header.h 514 B

1234567891011121314151617181920212223242526
  1. //===- header.h -----------------------------------------------------------===//
  2. //
  3. // The MCLinker Project
  4. //
  5. // This file is distributed under the University of Illinois Open Source
  6. // License. See LICENSE.TXT for details.
  7. //
  8. //===----------------------------------------------------------------------===//
  9. #ifndef MCLD_${CLASS_NAME}_H
  10. #define MCLD_${CLASS_NAME}_H
  11. namespace mcld
  12. {
  13. /** \class ${class_name}
  14. * \brief ${brief}
  15. */
  16. class ${class_name}
  17. {
  18. };
  19. } // namespace of mcld
  20. #endif