DLLTestVirtualClass.h 561 B

12345678910111213141516171819202122232425
  1. /*
  2. * Copyright (c) Contributors to the Open 3D Engine Project.
  3. * For complete copyright and license terms please see the LICENSE at the root of this distribution.
  4. *
  5. * SPDX-License-Identifier: Apache-2.0 OR MIT
  6. *
  7. */
  8. #ifndef AZCORE_UNITTEST_DLLTESTVIRTUALCLASS_H
  9. #define AZCORE_UNITTEST_DLLTESTVIRTUALCLASS_H
  10. namespace UnitTest
  11. {
  12. class DLLTestVirtualClass
  13. {
  14. public:
  15. DLLTestVirtualClass()
  16. : m_data(1) {}
  17. virtual ~DLLTestVirtualClass() {}
  18. int m_data;
  19. };
  20. }
  21. #endif // AZCORE_UNITTEST_DLLTESTVIRTUALCLASS_H