Jump to content

Translations:KDevelop5/Manual/Working with source code/85/en: Difference between revisions

From KDE UserBase Wiki
FuzzyBot (talk | contribs)
Importing a new version from external source
 
FuzzyBot (talk | contribs)
Importing a new version from external source
 
Line 1: Line 1:
<!--}}-->{{Input|1=<nowiki>
<!--}}--><syntaxhighlight lang="cpp" line>
class Car {
class Car {
   // ...
   // ...

Latest revision as of 08:38, 2 April 2020

Information about message (contribute)
This message has no documentation. If you know where or how this message is used, you can help other translators by adding documentation to this message.
Message definition (KDevelop5/Manual/Working with source code)
<!--}}--><syntaxhighlight lang="cpp" line>
class Car {
  // ...
  public:
   std::string get_color () const;
};

<syntaxhighlight lang="cpp" line> class Car {

 // ...
 public:
   std::string get_color () const;

};