TabTypes.h

Go to the documentation of this file.
00001 //
00002 // Copyright 2009 Autodesk, Inc.  All rights reserved. 
00003 //
00004 // This computer source code and related instructions and comments are the
00005 // unpublished confidential and proprietary information of Autodesk, Inc. and
00006 // are protected under applicable copyright and trade secret law.  They may
00007 // not be disclosed to, copied or used by any third party without the prior
00008 // written consent of Autodesk, Inc.
00009 #pragma once
00010 #include "tab.h"
00011 #include "point3.h"
00012 
00013 // Pre defined Tab Containers
00014 typedef Tab<int>   IntTab;
00015 typedef Tab<float> floatTab;
00016 typedef Tab<float> FloatTab;
00017 typedef Tab<DWORD> DWTab;
00018 typedef Tab<Point3> Point3Tab;
00022 class DWORDTab : public Tab<DWORD> {};