File: edgetable.h

package info (click to toggle)
battleball 2.0-13
  • links: PTS
  • area: main
  • in suites: woody
  • size: 1,016 kB
  • ctags: 3,097
  • sloc: cpp: 15,310; makefile: 48; csh: 34
file content (27 lines) | stat: -rw-r--r-- 588 bytes parent folder | download | duplicates (5)
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
// Copyright (c) 1997 Philip A. Hardin (pahardin@cs.utexas.edu)
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License v2 or later.


#ifndef EDGETABLE_h
#define EDGETABLE_h


#include "table.h"
#include "edge.h"
#include "panel3d.h"


/************************************************************************/
typedef table<edge> baseEdgeTable;

struct edgeTable : baseEdgeTable {

  // no additional data members

 	//edgeTable(const edgeTable&);		// copy constructor
  void	AddPanel(const panel3d&);
};


#endif