Translations:KDevelop5/Manual/Working with source code/119/en: Difference between revisions
Appearance
Importing a new version from external source |
Importing a new version from external source |
||
| Line 1: | Line 1: | ||
<syntaxhighlight lang="cpp" line> | |||
class Car { | class Car { | ||
public: | public: | ||
std::string get_color () const; | std::string get_color () const; | ||
}; | }; | ||
</ | </syntaxhighlight> | ||
Latest revision as of 08:38, 2 April 2020
class Car {
public:
std::string get_color () const;
};