Translations:KDevelop5/Manual/Working with source code/119/uk: Difference between revisions

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

Latest revision as of 12:38, 4 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>
class Car {
  public:
    std::string get_color () const;
};