File: GraphClass.h

package info (click to toggle)
openc%2B%2B 2.5.3-3
  • links: PTS
  • area: main
  • in suites: slink
  • size: 3,268 kB
  • ctags: 7,251
  • sloc: cpp: 30,583; ansic: 16,718; makefile: 336; asm: 209; tcl: 126; sh: 3
file content (26 lines) | stat: -rw-r--r-- 578 bytes parent folder | download | duplicates (3)
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
/*
 *  GraphClass.h
 *  Author : Renaud Pawlak (pawlak@ecoledoc.lip6.fr)
 *  GraphClass creates a tcl/tk script that draws the instances
 *  of GraphClass...
 *  Nota : it does not change the compiler semantics. 
 */

#ifndef __GraphClass_h
#define __GraphClass_h

#include "mop.h"
#include <fstream.h>

class GraphClass : public Class {
public:
    static bool Initialize();
    void TranslateClass(Environment *);
    static Ptree *FinalizeClass();
protected:
    static ofstream* fsp;
    static int nofClasses;
    static int SearchClass(TypeInfo&, ClassArray&);
};

#endif