comparison gui/src/octave-adapter/octave-event.h @ 15045:1ffaad442161 gui

Source code formatting (80-column lines, mostly whitespace changes)
author Jordi Gutiérrez Hermoso <jordigh@octave.org>
date Sat, 28 Jul 2012 21:53:45 -0400
parents 422b0b2ce5f8
children 6889217b9d78
comparison
equal deleted inserted replaced
15044:b7b1ffc88086 15045:1ffaad442161
51 { } 51 { }
52 52
53 virtual ~octave_event () 53 virtual ~octave_event ()
54 { } 54 { }
55 55
56 /** Performs what is necessary to make this event happen. 56 /** Performs what is necessary to make this event happen. This
57 * This code is thread-safe since it will be executed in the octave thread. 57 * code is thread-safe since it will be executed in the octave
58 * However, you should take care to keep this code as short as possible. */ 58 * thread. However, you should take care to keep this code as
59 * short as possible. */
59 virtual bool perform () = 0; 60 virtual bool perform () = 0;
60 61
61 /** 62 /**
62 * Accepts this event. This allows the event observer to react properly 63 * Accepts this event. This allows the event observer to react properly
63 * onto the event. 64 * onto the event.