-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSignature.h
More file actions
41 lines (31 loc) · 839 Bytes
/
Signature.h
File metadata and controls
41 lines (31 loc) · 839 Bytes
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
#ifndef SIGNATURE_H
#define SIGNATURE_H
#include <Archivable.h>
#include <List.h>
#include <Path.h>
#include <support/ClassInfo.h>
#include "Constante.h"
#include "Relation.h"
#include "Operation.h"
#include "LView.h"
#include "OCamlModule.h"
class Signature : public LView, public OCamlModule {
public :
Signature(BString* name);
Signature(Signature* signature);
Signature(BMessage *archive);
BList* GetConstanteList() const;
BList* GetOperationList() const;
BList* GetRelationList() const;
bool GetModified() const;
void SetModified(bool modified);
virtual status_t Archive(BMessage* archive, bool deep);
static BArchivable *Instantiate(BMessage *archive);
void PrintToStream();
private :
bool fModified;
BList* fConstante_List;
BList* fOperation_List;
BList* fRelation_List;
};
#endif