-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSegnale.hpp
49 lines (43 loc) · 1.51 KB
/
Segnale.hpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
#ifndef SEGNALE_HPP
#define SEGNALE_HPP
#include <iostream>
#include <string>
#include <vector>
using namespace std;
class Segnale
{
friend ostream& operator<<(ostream& os, const Segnale& s);
public:
Segnale() {}
Segnale(string n, string t, bool dt=true, unsigned d=0) {nome=n; tipo=t; downto=dt; dimensione= d;}
string Nome() const {return nome;}
string Tipo() const {return tipo;}
bool Downto() const {return downto;}
unsigned Dimensione() const {return dimensione;}
private:
string nome;
string tipo;
bool downto;
unsigned dimensione;
};
class SegnaleParziale
{
friend ostream& operator<<(ostream& os, const SegnaleParziale& s);
friend istream& operator>>(istream& is, SegnaleParziale& s);
public:
SegnaleParziale() {segnale = nullptr;};
SegnaleParziale(Segnale* s) {segnale=s; range_segnale.first=0; range_segnale.second=s->Dimensione()-1; downto=s->Downto();}
SegnaleParziale(Segnale* s, unsigned i, unsigned f)
{segnale=s; range_segnale.first=i; range_segnale.second=f; downto=s->Downto();}
SegnaleParziale(Segnale* s, unsigned i, unsigned f, bool d)
{segnale=s; range_segnale.first=i; range_segnale.second=f; downto=d;}
Segnale* SegnaleAssociato() const {return segnale;}
pair<unsigned, unsigned> RangeSegnale() const {return range_segnale;}
bool Downto() const {return downto;}
bool InRange(pair<unsigned, unsigned> r) const {return !(r.second<range_segnale.first || range_segnale.second<r.first);}
private:
Segnale* segnale;
pair<unsigned, unsigned> range_segnale;
bool downto;
};
#endif