Layer.cpp 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. /* Layer.cpp
  2. *
  3. * Copyright (C) 2017 Paul Boersma
  4. *
  5. * This code is free software; you can redistribute it and/or modify
  6. * it under the terms of the GNU General Public License as published by
  7. * the Free Software Foundation; either version 2 of the License, or (at
  8. * your option) any later version.
  9. *
  10. * This code is distributed in the hope that it will be useful, but
  11. * WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  13. * See the GNU General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU General Public License
  16. * along with this work. If not, see <http://www.gnu.org/licenses/>.
  17. */
  18. #include "Layer.h"
  19. #include "oo_DESTROY.h"
  20. #include "Layer_def.h"
  21. #include "oo_COPY.h"
  22. #include "Layer_def.h"
  23. #include "oo_EQUAL.h"
  24. #include "Layer_def.h"
  25. #include "oo_CAN_WRITE_AS_ENCODING.h"
  26. #include "Layer_def.h"
  27. #include "oo_WRITE_TEXT.h"
  28. #include "Layer_def.h"
  29. #include "oo_READ_TEXT.h"
  30. #include "Layer_def.h"
  31. #include "oo_WRITE_BINARY.h"
  32. #include "Layer_def.h"
  33. #include "oo_READ_BINARY.h"
  34. #include "Layer_def.h"
  35. #include "oo_DESCRIPTION.h"
  36. #include "Layer_def.h"
  37. #include "enums_getText.h"
  38. #include "Layer_enums.h"
  39. #include "enums_getValue.h"
  40. #include "Layer_enums.h"
  41. Thing_implement (Layer, Daata, 0);
  42. Thing_implement (LayerList, Ordered, 0);
  43. /* End of file Layer.cpp */