yaf.cpp 825 B

1234567891011121314151617181920212223242526272829303132
  1. /*============================================================================
  2. CMake - Cross Platform Makefile Generator
  3. Copyright 2004-2011 Kitware, Inc.
  4. Copyright 2011 Alexander Neundorf ([email protected])
  5. Distributed under the OSI-approved BSD License (the "License");
  6. see accompanying file Copyright.txt for details.
  7. This software is distributed WITHOUT ANY WARRANTY; without even the
  8. implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  9. See the License for more information.
  10. ============================================================================*/
  11. #include "yaf.h"
  12. #include "yaf_p.h"
  13. #include <stdio.h>
  14. Yaf::Yaf()
  15. {
  16. }
  17. void Yaf::doYaf()
  18. {
  19. YafP yafP;
  20. yafP.doYafP();
  21. }
  22. // check that including a moc file from a private header the wrong way works:
  23. #include "yaf_p.moc"