Initial commit

This commit is contained in:
Eagle517
2026-01-14 10:27:57 -06:00
commit c1576fee30
11290 changed files with 1552799 additions and 0 deletions

View File

@@ -0,0 +1,52 @@
/**********************************************************************
*<
FILE: toolmap.h
DESCRIPTION: defines a mapping between control identifiers and osnaps
CREATED BY: John Hutchinson
HISTORY: January 15, 1996
*> Copyright (c) 1994, All Rights Reserved.
**********************************************************************/
#ifndef __TOOLMAP__
#define __TOOLMAP__
class msgdata {
public:
int recipient;
int subindex;
int msg;
msgdata(){};
msgdata(int r, int s, int m):recipient(r), subindex(s), msg(m){};
};
class tooltabentry {
private:
int indexer;
msgdata data;
public:
tooltabentry(){};
tooltabentry(int i, int r, int s, int m);
msgdata *Query(int i);
};
class ToolTab : public Tab<tooltabentry *> {
public:
msgdata *Lookup(int toolid);
};
#endif //_TOOLMAP_