#pragma once for our headers plus drive-by formatting

This commit is contained in:
Flössie
2019-10-31 10:20:50 +01:00
parent aacea7046c
commit add5c790d6
177 changed files with 946 additions and 1158 deletions

View File

@@ -16,22 +16,28 @@
* You should have received a copy of the GNU General Public License
* along with RawTherapee. If not, see <https://www.gnu.org/licenses/>.
*/
#ifndef _PROFILEPANEL_
#define _PROFILEPANEL_
#pragma once
#include <vector>
#include <gtkmm.h>
#include <vector>
#include "../rtengine/rtengine.h"
#include "guiutils.h"
#include "partialpastedlg.h"
#include "pparamschangelistener.h"
#include "profilechangelistener.h"
#include "partialpastedlg.h"
#include "guiutils.h"
#include "profilestorecombobox.h"
#include "../rtengine/noncopyable.h"
#include "../rtengine/rtengine.h"
class RTImage;
class ProfilePanel : public Gtk::Grid, public PParamsChangeListener, public ProfileStoreListener, public rtengine::NonCopyable
class ProfilePanel :
public Gtk::Grid,
public PParamsChangeListener,
public ProfileStoreListener,
public rtengine::NonCopyable
{
private:
@@ -107,5 +113,3 @@ public:
void selection_changed ();
void writeOptions();
};
#endif