File: context.h

package info (click to toggle)
atom4 4.1-1
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 664 kB
  • ctags: 947
  • sloc: cpp: 4,451; makefile: 52; sh: 45; perl: 6
file content (21 lines) | stat: -rw-r--r-- 232 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/*
 * Atom-4 context class
 * For sharing common resources
 * Header file
 *
 * $Id$
 */

#ifndef CONTEXT_H
#define CONTEXT_H


class atom4context {
public:
  atom4context();
  ~atom4context();

  GC copygc;
};

#endif // CONTEXT_H