File: plotsheet.h

package info (click to toggle)
aoflagger 3.5.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 6,000 kB
  • sloc: cpp: 67,891; python: 497; sh: 242; makefile: 22
file content (23 lines) | stat: -rw-r--r-- 431 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#ifndef PLOT_SHEET_H
#define PLOT_SHEET_H

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

#include <gtkmm/box.h>

#include <string>
#include <vector>

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

  virtual void InitializeToolbar(Gtk::Box& toolbar) {}

 protected:
  sigc::signal<void(const std::string&)> _signalStatusChange;
};

#endif