| // Copyright (c) 2026, the Dart project authors. Please see the AUTHORS file | |
| // for details. All rights reserved. Use of this source code is governed by a | |
| // BSD-style license that can be found in the LICENSE file. | |
| #include "cpp_class_test.h" | |
| Animal::Animal(int age) : age(age) {} | |
| Animal::~Animal() {} | |
| void Animal::speak() {} | |
| int Animal::getAge() const { return age; } | |
| int Animal::getCount() { return 42; } | |
| void Animal::Animal_new() {} | |
| void Animal::Animal_delete() {} | |