Translations:Kdevelop5/Manual/Meet KDevelop/5/fr: Difference between revisions

From KDE UserBase Wiki
No edit summary
No edit summary
 
Line 1: Line 1:
{{Input/fr|<syntaxhighlight lang="cpp">
<syntaxhighlight lang="cpp" line>
class Car {
class Car {
   // ...
   // ...
Line 5: Line 5:
     std::string get_color () const;
     std::string get_color () const;
};
};
</syntaxhighlight>}}
</syntaxhighlight>

Latest revision as of 17:47, 18 June 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/Meet KDevelop)
<syntaxhighlight lang="cpp" line>
class Car {
  // ...
  public:
   std::string get_color () const;
};
</syntaxhighlight>
class Car {
  // ...
  public:
    std::string get_color () const;
};