summaryrefslogtreecommitdiff
path: root/common/group.h
diff options
context:
space:
mode:
authordocwhat1999-11-14 06:43:18 +0000
committerdocwhat1999-11-14 06:43:18 +0000
commitd71eec8062e852e56f03102ba4b4e87dc485821d (patch)
tree452368ad0e7e24627e517a0c88c2508d02cea6dc /common/group.h
parent2046090b7ce8dd901ce43e650be5acf44016d714 (diff)
Initial revision
git-svn-id: http://svn.leocad.org/trunk@2 c7d43263-9d01-0410-8a33-9dba5d9f93d6
Diffstat (limited to 'common/group.h')
-rw-r--r--common/group.h31
1 files changed, 31 insertions, 0 deletions
diff --git a/common/group.h b/common/group.h
new file mode 100644
index 0000000..45418e0
--- /dev/null
+++ b/common/group.h
@@ -0,0 +1,31 @@
+//
+// group.h
+////////////////////////////////////////////////////
+
+#ifndef _GROUP_H
+#define _GROUP_H
+
+class File;
+
+class Group
+{
+public:
+// void DoSaveLoad(CArchive& ar, CCADDoc* pDoc);
+ Group();
+ ~Group();
+
+ void SetGroup(Group* pGroup);
+ void UnGroup(Group* pGroup);
+ Group* GetTopGroup();
+
+ Group* m_pNext;
+ Group* m_pGroup;
+
+ void FileLoad(File* file);
+ void FileSave(File* file, Group* pGroups);
+
+ char m_strName[65];
+ float m_fCenter[3];
+};
+
+#endif // _GROUP_H