MCPcopy Create free account
hub / github.com/FSoft-AI4Code/CodeText-parser / Vehicle

Class Vehicle

tests/test_parser/test_sample/cpp_test_sample.cpp:13–19  ·  view source on GitHub ↗

Base class

Source from the content-addressed store, hash-verified

11
12// Base class
13class Vehicle {
14 public:
15 string brand = "Ford";
16 void honk() {
17 cout << "Tuut, tuut! \n" ;
18 }
19};
20
21int main() {
22 Car myCar;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected