Sponsored Content
Full Discussion: C++ coding standard tool
Special Forums Windows & DOS: Issues & Discussions C++ coding standard tool Post 302993904 by grabbitmedia on Thursday 16th of March 2017 05:30:37 AM
Old 03-16-2017
Most of the modern editors have plugins to check against coding styles/standards. I use Emacs and it does it pretty well (one could define own styles as well).
There is also a tool by Google (cpplint) that should also serve your purpose. See google/style guide. The cpplint tool could be found here google/style guide [The two links are actually different but Quora seems to convert them to same name]

Last edited by RudiC; 03-16-2017 at 06:43 AM..
 

7 More Discussions You Might Find Interesting

1. UNIX for Advanced & Expert Users

can I use this coding

I apologise because I had pasted this question in the newbies forum first (because i am a bit of a newbie) but thought it might be better suited in here if i have to sepearate parameters can I use this syntax especially the or part (||) and is this correct if (6 Replies)
Discussion started by: w33man
6 Replies

2. Shell Programming and Scripting

Coding Standard For Unix Shell Scripting!!!

Is there any site on Coding Standard for Shell Scripting in UNIX. Please help me know!!!!! Thanks Om (1 Reply)
Discussion started by: Omkumar
1 Replies

3. Shell Programming and Scripting

standard error to standard out question

Hi there how can i get the result of a command to not give me its error. For example, on certain systems the 'zfs' command below is not available, but this is fine becaues I am testing against $? so i dont want to see the message " command not found" Ive tried outputting to /dev/null 2>&1 to no... (5 Replies)
Discussion started by: hcclnoodles
5 Replies

4. UNIX for Dummies Questions & Answers

Redirect Standard output and standard error into spreadsheet

Hey, I'm completely new at this and I was wondering if there is a way that I would be able to redirect the log files in a directories standard output and standard error into and excel spreadsheet in anyway? Please remember don't use too advanced of terminology as I just started using shell... (6 Replies)
Discussion started by: killaram
6 Replies

5. Shell Programming and Scripting

Standard out and standard error

I need to run a cronjob and in the cronjob I execute a script that if there is an error produces standard error so I do /RUNMYSCRIPT 2> mylogfile.log However, if it runs correctly, I don't get a standard error output, I get a standard out output. How do I redirect both standard error and... (2 Replies)
Discussion started by: guessingo
2 Replies

6. Shell Programming and Scripting

Need help with coding

HI, Can some one guide me how to make changes to the script below so that it can load the history of a program to IT server ? Format of data: YYYYMMDD065959.dsk.log YYYYMMDD235959.dsk.log currently both are loaded together. Need to separate them as above format. Thanks in advance. ... (1 Reply)
Discussion started by: crazydude80
1 Replies

7. Windows & DOS: Issues & Discussions

Need help with coding

HI, Can some one guide me how to make changes to the script below so that it can load the history of a program to IT server ? Format of data: YYYYMMDD065959.dsk.log YYYYMMDD235959.dsk.log currently both are loaded together. Need to separate them as above format. Thanks in advance. ... (2 Replies)
Discussion started by: crazydude80
2 Replies
Gtk2::ImageView::Tool(3pm)				User Contributed Perl Documentation				Gtk2::ImageView::Tool(3pm)

NAME
Gtk2::ImageView::Tool - Interface for objects capable of being used as tools by Gtk2::ImageView DESCRIPTION
Gtk2::ImageView::Tool is an interface that defines how Gtk2::ImageView interacts with objects that acts as tools. Gtk2::ImageView delegates many of its most important tasks (such as drawing) to its tool which carries out all the hard work. The Gtk2::ImageView package comes with two tools; Gtk2::ImageView::Tool::Dragger and Gtk2::ImageView::Tool::Selector, but by implementing your own tool it is possible to extend Gtk2::ImageView to do stuff its author didn't imagine. Gtk2::ImageView uses Gtk2::ImageView::Tool::Dragger by default, as that tool is he most generally useful one. However, it is trivial to make it use another tool. my $view = Gtk2::ImageView->new; my $tool = Gtk2::ImageView::Tool::Selector ($view); $view->set_tool ($tool); Using the above code makes the view use the selector tool instead of the default dragger tool. HIERARCHY
Glib::Interface +----Gtk2::ImageView::Tool METHODS
boolean = $tool->button_press ($ev) o $ev (Gtk2::Gdk::Event) boolean = $tool->button_release ($ev) o $ev (Gtk2::Gdk::Event) cursor = $tool->cursor_at_point ($x, $y) o $x (integer) o $y (integer) Returns the cursor to display at the given coordinates. boolean = $tool->motion_notify ($ev) o $ev (Gtk2::Gdk::Event) $tool->paint_image ($opts, $drawable) o $opts (Gtk2::Gdk::Pixbuf::Draw::Opts) o $drawable (Gtk2::Gdk::Drawable) Called whenever the image view decides that any part of the image it shows needs to be redrawn. $tool->pixbuf_changed ($reset_fit, $rect) o $reset_fit (boolean) o $rect (Gtk2::Gdk::Rectangle) Indicate to the tool that either a part of, or the whole pixbuf that the image view shows has changed. This method is called by the view whenever its pixbuf or its tool changes. That is, when any of the following methods are used: Gtk2::ImageView::set_pixbuf() Gtk2::ImageView::set_tool() Gtk2::ImageView::damage_pixels() If the reset_fit parameter is TRUE, it means that a new pixbuf has been loaded into the view. tool : the tool reset_fit : whether the view is resetting its fit mode or not rect : rectangle containing the changed area or NULL SEE ALSO
Gtk2::ImageView, Glib::Interface COPYRIGHT
Copyright (C) 2007 by Jeffrey Ratcliffe. This software is licensed under the GPL-3; see Gtk2::ImageView for a full notice. perl v5.14.2 2011-11-16 Gtk2::ImageView::Tool(3pm)
All times are GMT -4. The time now is 05:53 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy