File: plotsheet.h

package info (click to toggle)
aoflagger 2.13.0-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 4,232 kB
  • sloc: cpp: 61,805; python: 60; sh: 23; makefile: 8
file content (22 lines) | stat: -rw-r--r-- 439 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#ifndef PLOT_SHEET_H
#define PLOT_SHEET_H

#include "../structures/antennainfo.h"

#include <gtkmm/box.h>
#include <gtkmm/toolbar.h>

#include <vector>

class PlotSheet : public Gtk::HBox
{
public:
	sigc::signal<void, const std::string &> SignalStatusChange() { return _signalStatusChange; }

	virtual void InitializeToolbar(Gtk::Toolbar& toolbar) { };
	
protected:
	sigc::signal<void, const std::string &> _signalStatusChange;
};

#endif